2010 Theme menu font colors & drop down menu font color
-
I found that this will change the color of my “home” menu:
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color: #FFFF80;
}But the rest of the menu items did not change.
I wish to change all the visible menu items to the same color (in this example, change color to:#FFFF80) . There are about 15. I would also like to change the color of the drop down menusThe blog I need help with is: (visible only to logged in users)
-
If you notice in the selectors, it says “current-menu…” That rule will define the color for the current page, so if you are on the about page, the color of the “about” label in the menu will be FFFF80.
This will cover the color of the tabs that are not in hover state and not the current page.
#access a { color: #AAAAAA; }This will cover the “hover” color (when you put your mouse over a tab).
#access li:hover > a, #access ul ul:hover > a { color: #FFFFFF; } -
-
- The topic ‘2010 Theme menu font colors & drop down menu font color’ is closed to new replies.