Hi guys,
I know you are all incredibly busy and doing things on a strict rotation basis but its been quite a few days since my last question on the topic of using multiple fonts. Im guessing I may have fallen through a crack in the system so i’m throwing up this polite nudge just in case.
Could you look at this ageing topic and see if you can help?
https://kriesi.at/support/topic/multiple-font-embedding.
Sorry to ask again!
Mega thanks
Andy
Hi,
Please add this on your functions.php, below line 3:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
Edit header.php, then place this code on top of </head> tag.
<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
You can now assign the Allura font using custom.css or Quick CSS. For example, we’ll change the iconbox title:
h3.iconbox_content_title {
font-family: 'Allura' !important;
}
This is the screenshot:
Regards,
Ismael