How to change nav menu text color
- The topic ‘How to change nav menu text color’ is closed to new replies.
Need help? Check out our Support site, then
Hello again!
I would like help with changing the text color of the navbar.
Cheers,
Eugene
The blog I need help with is: (visible only to logged in users)
Hi Eugene,
You can use this short CSS snippet to change the link and link hover color of the main navigation menu items:
.main-navigation-menu a:link,
.main-navigation-menu a:visited {
color: #fff;
}
.main-navigation-menu a:hover,
.main-navigation-menu a:active {
color: #999;
}
Cheers,
Thomas