Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #473305

    Hello,

    How do I unbold headings??

    #473324

    Hi icebox10!

    All headings? If so, please add following code to Quick CSS in Enfold theme options under General Styling tab

    h1, h2, h3, h4, h5, h6 { font-weight: normal !important; }

    Regards,
    Yigit

    #473927

    Thanks!

    I would like to use the font “raleway” throughout the entire site – but it’s not an option for body text. What can I do to apply it?

    #473939
    #473949

    awesome, thanks! Not sure if I’m missing something, but I cannot find the child theme in the downloadable folders. Where is it located?

    #473976

    i found the child theme but what I am doing does not seem to work…

    #474383

    Hey!

    Add this to your child theme functions.php file.

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Raleway'] = 'Raleway:400';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Raleway'] = 'Raleway:400';
    return $fonts;
    }

    And then select “Raleway” in the font selection in the Enfold settings and save.

    Best regards,
    Elliott

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