Changing menu text colour
- The topic ‘Changing menu text colour’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Can you please help with how to change the menu (top/main nav) text colour?
Thanks!
The blog I need help with is: (visible only to logged in users)
If you have access to the CSS Customizations, you can use this selector:
.main-navigation a,
.main-navigation ul ul a,
.main-navigation ul li:hover ul a {
color: #fff;
}
For hover states, you can use this:
.main-navigation a, .main-navigation a:hover, .main-navigation li:hover a {
color: #000;
}
You can update the color hex value to whatever you like.
Perfect, I had tried about a dozen different combinations, should have come here first!
Thanks :)