Hi!
I want to highlight an item from my main menu.
In the theme options, in the global custom CSS section I have added this code:
.menu-highlight
{
background: #ffe600;
border-radius: 5px;
padding: 0px 0px;
line-height: 50px;
margin-right:10px;
}
In the corresponding menu item, I have added the css .menu-highlight class.
So far everything is correct. The problem is that I want the menu item text to be black. If I add to my class:
color: #000000;
the font color always appear in white color. Can you help me! I need the font color in black only in this menu item. I try put !important, but the problem persist.
Thanks