Does anyone know how to change the text color and hover color in my nav bar? I am currently using the simple custom css plugin and have tried several different code options but can’t get anything to work!
Hmm, it changes the color, but not in the way I want. I want it to change color when you hover the page link or when you’re on that page. Sorry for my english.
So shouldn’t it be something with a:hover/a:active? It just stays the default darkgrey when its active…
.main-navigation .main-nav li.home a:hover {
background-color: yellow; /* or use a hex code to be more specific */
color: #000000; /* this is the text color */
}
but the other problem unfortunately still remains.