Re: Menu a:hover CSS
No! I mean you should add an extra class to selectors like this:
".navbar-inverse .navbar-nav > li > a:hover"
For example, ".navbar.navbar-inverse .navbar-nav > li > a:hover".
Or "#page .navbar-inverse .navbar-nav > li > a:hover".
This will increase the CSS specificity of these rules and make them override other rules that make menu items gray.
|