Viewing 1 reply thread
You must be logged in to reply to this topic.
Hi
Is there a way to change the menu’s background color for the mobile view? Maybe with a media query…
And finally, which are the css classes to set
– link color
– link hover color
– visited link color
for the mobile menu ?
Thanks
Hello,
1-menu’s background color:
You can change the background color and font color in Specular > Header Options > Dropdown Options & Mobile Menu > Dropdown Background Color / Dropdown typography.
2-Link color:
.menu-small ul.menu > li > a {
color: #fff !important;
}
3-Link hover color:
.menu-small ul.menu > li > a:hover {
color: #fff !important;
}
4-Visited link color:
.menu-small ul.menu > li > a:visited {
color: #fff !important;
}
Change the color to your wish.
Best regards!
You must be logged in to reply to this topic.