Are you looking to change the text color on hover ? If so, the rule would be
.nav .menu-item a {
color:YourColor;
}
If you’re talking about the background color, use this:
.nav .menu-item {
background-color:YourColor;
}
Hope this helps.
Thanks Thimothe. I tried the code below but that still did not change the text color on hover. If you take a look at the site I’m building you will notice that the page the user is currently on blacks out, or on hover blacks out.
.nav .menu-item a {
color: yellow;
}
Thimothe after some trial and error this worked for me. Thanks for your help.
.navbar .nav > li > a:hover {
color: #e9a825;
}
You’re welcome. I’m glad it helped and sorry about the missing :hover, I guess I was too tired.