Hi,
We’re using the header with social icons and bottom menu. We need to change the color of the menu so it’s a different-color strip. And we need to change the text accordingly.
Is this done in the settings, or does it require custom CSS?
Any guidance will be appreciated.
Thanks,
Mark
Hi,
You can use this on your custom.css or Quick CSS:
.header_color .main_menu ul:first-child > li > a {
color: red;
}
.bottom_nav_header.social_header .main_menu ul:first-child>li a {
font-size: 15px;
}
For active state, use this:
.header_color .main_menu ul:first-child > li.active-parent-item > a {
color: blue;
}
And hover state:
.header_color .main_menu ul:first-child > li a:hover {
color: blue;
}
Regards,
Ismael