hallo ich bin anfänger und würde gerne wissen wie ich google fonts bei enfold installiere.
ich würde gerne alle schriften durch einen neuen font google font mit dem Namen “Raleway” ersetzen.
vielen dank
liebe grüsse
Hey gowapi!
Thank you for using Enfold.
You can use this on functions.php to add google fonts:
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Raleway'] = 'Raleway';
return $fonts;
}
The Raleway font will be added as an option on General Styling > Body Font (Defines the Font for your body text).
Best regards,
Ismael
thanx works !
regards