Hi,
In the link in private content you see my site.
I want to change the heading font in the mega menu, the font and the color.
What do i need for CSS for that ?
Hey BPC,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - */
/* Mega menu title */
#top #header #avia-menu li .mega_menu_title {
color: red;
}
For more info please check https://kriesi.at/documentation/enfold/mega-menu/
Best regards,
Vinay
Thanks, that wil do the trick.
And what about the font and the font size ?
Hi,
Please use the same CSS selector and add the font property :)
Your code should look like:
#top #header #avia-menu li .mega_menu_title {
color: red;
font-size: 14px;
font-family: your-font-name-here;
}
Best regards,
Vinay