Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #327397

    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.

    #327400

    Hey saki!

    Please go to Enfold theme options > Advanced Styling tab and edit “main menu links”

    Best regards,
    Yigit

    #327414

    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?

    #327419

    Hey!

    Please add following code to Quick CSS and adjust as needed

    .av-main-nav > li > a {
    font-family: verdana;
    }

    Regards,
    Yigit

    #327425
    This reply has been marked as private.
    #327707

    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

    #328309

    Hi Josue, will this make the font’s in firefox lighter? It didn’t seem to do anything?

    #328393

    Hey!

    Try adding this code to the Quick CSS:

    .avia-menu-text{ font-weight: 400; }
    

    Cheers! 
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.