Home › Forums › CSS › Background Hover with Fly out › Re: Background Hover with Fly out
May 18, 2012 at 6:07 pm
#103067
Participant
Thanks for the help, that worked. I figured out how to make “the background on the hover state to only appear in the parent menu items”. I added the class name to the hover state for each ul like below;
nav ul.menu li:hover{
background: url(images/hover.png) no-repeat left center;
}
nav ul.sub-menu li:hover{
background:#754ba9 url(none);
}
Now all I need is to get the parent hover background image to overlap. Hmm?