Hey there!
This theme is awesome, how ever I wish to know how to solve a simple detail.
I wish the Webfont CSS tag be moved before the rest of CSS in the Header.
As it is, it loads CSS then JS then Webfont. How can I change the order?
Thank you.
Hi Creatura_Creativa!
What part of the site do you mean? Is this on a portfolio or a masonry gallery or something else?
Best regards,
Devin
Hey there Devin,
It’s on the header, it loads always on every page of the site.
Seeing its source code on Chrome in example expanding the HEAD tag you can see the code, and it shows the exteral WebFonts from google loading at the bottom of the header. I wish it to load at the beginning, before the other CSS and JS.
Greetings!
Hi!
Try to open up /wp-content/themes/enfold/framework/php/class-style-generator.php and replace
if($addaction) add_action('wp_head',array(&$this, 'create_styles'),1000);
with
if($addaction) add_action('wp_head',array(&$this, 'create_styles'),1);
Best regards,
Peter