Tagged: font, not loading, oswald
A font has just started showing different. The oswald font is listed in the theme’s fonts and still views as such on my pc but is now showing different on our other pc. We have not changed anything so can you suggest what it might be? Attached a picture to show the difference.
Hi Annemarie!
Is Oswald a font your using in Dashboard > Enfold > General Styling? I see Titillium being linked to but not Oswald in your site. If your just using CSS and not using it at all in Dashboard > Enfold > General Styling then you’ll need to link to the font file. Try adding this to the bottom of your functions.php file.
add_action( 'wp_head', 'enfold_customization_add_font' );
function enfold_customization_add_font(){
?>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
<?php
}
Best regards,
Elliott