Under “General Styling” “Font” I notice that the Muli is an option for “Heading Font”; however, I do not see that it’s an option for “Defines the Font for your body text”. Is there a way I can add this so I can choose it from the dropdown?
Hey endoradigital!
Thank you for using Enfold.
Edit functions.php, add this below below line 16 or 17:
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Muli'] = 'Muli:300,400,300italic,400italic';
return $fonts;
}
Best regards,
Ismael