Page 1 of 1

CSS Horizontal Menu link style issue

Posted: Tue Mar 25, 2008 1:09 pm
by mtjo
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

Re: CSS Horizontal Menu link style issue

Posted: Sat Mar 29, 2008 5:11 pm
by Dr.CSS
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;
}