Changing Rollover Navigation color
-
I use the Skeptical CSS for the and am looking for the line of code in the CSS to change the rollover navigation color. Can anyone provide the line of code that needs to be edited?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
I’ll assume you are talking about the background color that appears. This also changes the color of the tab of the current page. Edit the color code as desired.
.nav li:hover > a, .nav a:hover, .nav li.current_page_item a:link, .nav li.current_page_item a:visited, .nav li.current_page_ancestor a:link, .nav li.current_page_ancestor a:visited, .nav li.current-menu-item a:link, .nav li.current-menu-item a:visited, .nav li.current-menu-ancestor a:link, .nav li.current-menu-ancestor a:visited { background-color: #9BC4CE !important; }If you are also talking about changing the text color, that would be here.
.nav a:link, .nav a:visited { color: #FFFFFF; } -
-
- The topic ‘Changing Rollover Navigation color’ is closed to new replies.