Hi there,
I am currently using WP-google fonts plugin to edit font styles. On my website:
http://www.whitestagweddings.com/
I have Fanwood as my primary font with the first fallback font to be Arial – now, does anyone know how I can change this to another font?
Many thanks in advance
Mij
Hi mijyman!
Thank you for using Enfold.
You can add something like this on Quick CSS or custom.css:
p {
font-family: "Fanwood Text", HelveticaNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
}
If you want to add custom google fonts, you can use this on functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Fanwood Text'] = 'Fanwood+Text:400,400italic';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Fanwood Text'] = 'Fanwood+Text:400,400italic';
return $fonts;
}
Best regards,
Ismael