Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #278608

    Hi,
    I’d like to change the logo to html and use a specific google font. Can you help me with that change?

    Site is located at: konishki.connect4consulting.com

    Thanks,
    Gabe

    #278973

    Hey Gabe!

    Try adding this at the very end of your theme functions.php file:

    function avf_text_logo_func($logo, $use_image, $headline_type, $sub, $alt, $link){
    	$logo = "<$headline_type class='logo bg-logo text-logo'><a href='".$link."'>Logo</a></$headline_type>";	
    	return $logo;
    }
    add_filter('avf_logo_final_output', 'avf_text_logo_func', 100, 6);
    

    To change the font-family of the logo put this in Quick CSS (change as needed):

    .text-logo{
    font-family: "Merriweather", sans-serif;
    }

    Cheers!
    Josue

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