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
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