Change hover color on menu drop-downs
- The topic ‘Change hover color on menu drop-downs’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
I’ve changed the hover color and text-decoration on most of my active links, but can’t seem to fix the drop-down items (pages) on the main menu. Help please?
Thanks,
M
(I have CSS upgrade)
The blog I need help with is: (visible only to logged in users)
Hey M,
You can target this links with:
#main-nav a {
text-decoration: underline;
}
for example.
Thanks!
Scott
Thanks, Scott. I’m trying to change the hover color in #main-nav a. What’s the CSS for the hover?
Thanks,
M
No problem! :D
Try this,
#main-nav a:hover {
color: #000000; /* Desired Color Here */
}
Alas no, hover is still black. Try again? :)
Try throwing an !important in there.
#main-nav a:hover {
color: #000000 !important;
}
Thanks again!
Scott
Hooray!!!