Hi,
to use Futura Pt font from the Adobe Typekit i have to insert the following code in the <head>.
The embedding rules from adobe are the following:
Copy the code below, and paste it into the pages on —– where the fonts and settings for your —- kit will be used. Make sure it goes near the top of the <head> tag.
<script src=”//use.typekit.net/—–.js”></script>
<script>try{Typekit.load();}catch(e){}</script>
How can i achieve that with Enfold?
Thank you and great job with your theme btw :)
Leonardo
Hey leosimo!
Try adding this to the bottom of your functions.php file.
add_filter( 'wp_head', 'enfold_customization_add_scripts' );
function enfold_customization_add_scripts(){
?>
insert your code here
<?php
}
Cheers!
Elliott
Hey Elliott,
thank you for the support. It worked perfectly.
Cheers!
Leonardo