With the CSS menu, I only want the link styles to change instead of the element background color. I have it working except the 2nd level active element does't retain its hover state. Has anyone converted their menu to this style or any suggestions?
The basic menu:
http://opensourcepartners.net/dev/menu.html
The CSS:
http://opensourcepartners.net/dev/menu.txt
CSS Horizontal Menu link style issue
Re: CSS Horizontal Menu link style issue
That would be the menuactive class that you need to style atm it's lumped in with the other menu states...
#primary-nav li ul li,
#primary-nav li ul li.menu,
#primary-nav li ul li.menuparent,
#primary-nav li ul li.menuactive,
#primary-nav li ul li:hover a,
#primary-nav li ul li.menu a,
#primary-nav li ul li.menuparent a,
#primary-nav li ul li.menuactive a
{
/** styling the appearance of active 2nd level menu items */
color: #000;
}
#primary-nav li ul li,
#primary-nav li ul li.menu,
#primary-nav li ul li.menuparent,
#primary-nav li ul li.menuactive,
#primary-nav li ul li:hover a,
#primary-nav li ul li.menu a,
#primary-nav li ul li.menuparent a,
#primary-nav li ul li.menuactive a
{
/** styling the appearance of active 2nd level menu items */
color: #000;
}