Menu Color

Hi,
I’d like to change the color of the nav-menu word so that when you’re on the page it’s black and when you’re not it goes back to grey. The current behaviour is to be grey all the time except when you hover over it and then it turns to black.

www.lawrencepilch.com/wp

Obviously new to WP and CSS, so thank-you in advance for your patience.

Hi,

Use this css code:


.menu li a{
color: #141515;
}

Thanks,

Cristian

Hi
Thanks for your attention. Unfortunately, when I added your suggestion to my Simple Custom CSS plug-in I observed no change to the behavior of my nav-menu.

Hi,

Add also the opacity because it seems to affect:

.menu li a{
color: #141515;
opacity:1;
}

Thanks,

Cristian