Where do you change the Main Menu font? It seems to be missing – please see link.
https://dl.dropboxusercontent.com/u/52916400/menu%20font%20missing.png
In the Enfold Settings, I have change the heading font and body font, but it does not impact the menu font and the menu font is missing from options.
Hey saki!
Please go to Enfold theme options > Advanced Styling tab and edit “main menu links”
Best regards,
Yigit
This only seems to have Google Fonts – how can I apply standard fonts like Times, Verdana, or Helvetica?
And, how would I add google fonts that are missing?
Hey!
Please add following code to Quick CSS and adjust as needed
.av-main-nav > li > a {
font-family: verdana;
}
Regards,
Yigit
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function add_subset_func($fontlist) {
$fontlist .= "&subset=latin,latin-ext";
return $fontlist;
}
add_filter('avf_google_fontlist', 'add_subset_func');
Cheers!
Josue
Hi Josue, will this make the font’s in firefox lighter? It didn’t seem to do anything?
Hey!
Try adding this code to the Quick CSS:
.avia-menu-text{ font-weight: 400; }
Cheers!
Josue