Menu dropdown topics font color change
-
Hello,
On the home page, the letters for the words on the main menu are black. When I hover over a menu item, the words in the dropdown are white. I need to change the color of that font to black. What do I change?
Thanks.
The blog I need help with is: (visible only to logged in users)
-
Hi there, add the following CSS to change the font color on the submenus to black.
.menu-primary .menu li ul li a { color: #000; }The hover color is also set to white, so if you also wish to change the hover color, add the following and edit the color code as desired.
.menu-primary .menu li ul li a:hover { color: #777; } -
I’ve just placed that in the CSS but it does not seem to change the font color. I do notice black lines in the submenus though. Is there something missing?
-
The rule right above the two you just added has some syntax issues you need to remove it and then redo it. This is what to remove:
body > div.container.hfeed > div.main > div.col-sidebar.sidebar-small { display: no body > div.container.hfeed > div.col-sidebar.sidebar-main { display: none; } -
-
- The topic ‘Menu dropdown topics font color change’ is closed to new replies.