I have tried with adding the following code to Quick CSS
#top .av-subnav-menu > li > a {
font-size: 16px;
}
but it had not effect on the font size of my submenu…
Hey Gaso,
To modify the submenu links please check the documentation about submenu element.
If you need any further assistance please feel free to let us know.
Best regards,
Vinay
Maybe of interest for someone else –
I managed to change the font color and size with this quick css
#top .av-subnav-menu > li > a {
font-size: 20px;
color: #fcc860;
}
And here the color of the link on hover..
#top .av-subnav-menu > li > a:hover {
color: #11306f;
}