Hi!
I am working on a new site with Enfold, (love all the options this theme has!) and specified Raleway for paragraphs and it is showing that way on the site:
http://dev.oliverclayco.com/ But looks like Arial on an phone and iPad.
Thanks for the help!
Jennifer
Hi,
an update, it is also showing Arial on my laptop, but not my desktop – weird. Can you let me know what I am missing to have it consistent on all devices?
Thanks!
Hi,
I figured out what I needed to do to get this fixed, I added the below to my functions.php file:
function load_fonts() {
wp_register_style(‘et-googleFonts’, ‘<link href=’http://fonts.googleapis.com/css?family=Raleway:200,300′ rel=’stylesheet’ type=’text/css’);
wp_enqueue_style( ‘et-googleFonts’);
}
add_action(‘wp_print_styles’, ‘load_fonts’);
This worked, but I’m wondering if there is a better way to do this? Also, wondering about your response time to requests like this, what is an average response time?
Thanks, Jennifer