disabling navagation hover
-
Hello,
What is the code for disabling the hover states in the main navigation menu.
My template is Forever theme.
Thank you.
The blog I need help with is: (visible only to logged in users)
-
It is nice to give visitors a visual clue that they are on an active button or link, but you can remove the black background hover effect on the navigation entirely with the following. I set the color to inherit, which will turn the menu text the dark grey when hovered.
#page #access li:hover > a { background: none; color: inherit; } -
Thank you. That has made a great difference.
Is it possible to remove the hover only from the social icons on the right of the main navigation menu?
Thank you.
-
Yes, you have the following rule in your CSS now. Add the “!important attribute to the color declaration.
#menu-item-76 a, #menu-item-77 a, #menu-item-78 a { color: rgba(0, 0, 0, 0) !important; } -
-
- The topic ‘disabling navagation hover’ is closed to new replies.