Hi there,
I want to use Nunito fonts everywhere on my website. How can i do that? and how can I change the font size in different places of my website?
Cheers mate,
Omid
Hi Omid,
Please try the following: http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/
Best regards,
Rikard
I am not really familiar with coding.
Can you please go to my website back end and do this for me if I provide you with my username and password?
I really appreciate it .
Omid
Hi!
Sure, please post login credentials here privately. Please post FTP access here as well if you do not mind, just in case :)
Best regards,
Yigit
Hi Yigit,
Thanks so much :)
Hey!
We added this code in the functions.php file:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
$fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
$fonts['Nunito'] = 'Nunito:400,700,300';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
$fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
$fonts['Nunito'] = 'Nunito:400,700,300';
return $fonts;
}
You can now set Nunito on General Styling > Fonts panel. Please create a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/
Regards,
Ismael
Hi Ismael,
Thanks very much for that :)
Unfortunately I have tried creating a child theme and it didn’t work.
Is it possible you do that favor for me too?
Regards,
Omid
Hi,
You can download a ready made child theme from here and upload it to your site: http://kriesi.at/documentation/enfold/downloads/
Thanks,
Rikard