Menu hover color

Hi,
I can only find the hover color section for the social menu, not for the primary menu.
How can I set a hover color for primary menu and dropdown?
Thanks
www.essentialpower.com.au

Hi @kecco,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#page .navbar-default .navbar-nav a:hover {
    color: #000;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

good stuff, thanks

I just noticed that my menu is green only on the homepage. I am now editing another page (www.essentialpower.com.au/about) and the menu is black.
In the homepage I made the menu go green by changing the ACCENT COLOR in layout options, and I am happy with what happens on the rest on the page by doing that.
So, this seems not to affect the other pages?
Thanks a lot

This is because you have applied green color to active menu item only.

To make it always green try using the below CSS code.

#page .navbar-default .navbar-nav a {
    color: #4ea346;
}