Reputation: 2879
I am trying to change the blue hover color of top menu to black on my website using CSS / jQuery:
I have written following code:
<style>
#menu-top:hover { color: #000 }
.nav-menu:hover { color: #000 }
</style>
But it does not change the color.
Upvotes: 0
Views: 241
Reputation: 586
Two problems
color
which changes text color instead of background-color
.nav-menu *:hover
matches any element that is a descendent of the navbar (this seems to work on this site)So the final might look like
<style>
#menu-top *:hover { background-color: #000 }
.nav-menu *:hover { background-color: #000 }
</style>
Upvotes: 1