Hi, I would like to change the color of the fullwidth sub menu so that the background would be #37a8e0 and the font/text and the elements between the different menu items would be white.
Thanks.
Hey!
Try adding this code to the Quick CSS:
#top .av-submenu-container, .av-submenu-container a {
background-color: #37a8e0 ;
}
#top .av-subnav-menu li a {
background-color: transparent;
color: white;
}
Cheers!
Josue
Great, than did the job.
How can I make the font bigger on the sub menu?
Try:
#top .av-subnav-menu li a {
background-color: transparent;
color: white;
font-size: 22px;
}
Best regards,
Josue
Thanks