Tag for Publisher Theme Menu Bar
-
I was wondering what the tag is to select the menu bar on publisher theme. I wanted to slightly change its color but I can’t do so through the custom color feature.
The blog I need help with is: (visible only to logged in users)
-
Hi, if you are talking about the menu background color (the black-ish color) add the following to your custom CSS and edit the color code as desired.
.navigation-wrap { background: #CC0000; }If you are talking about the font color for the non-current menu items (grey) then add the following and adjust the font color as desired.
.main-navigation a { color: #44CC00; }If you want to adjust the color of the current menu item (white) then add the following and adjust.
.main-navigation li.current-menu-item > a, .main-navigation li a:hover { color: #cc00aa; } -
You might also like this tutorial about how to use browser tools to look up CSS selectors: http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
- The topic ‘Tag for Publisher Theme Menu Bar’ is closed to new replies.