Tagged: adobe fonts
HI
I am trying to use Adobe font Moret on my site.
I made a project that with this embed code: <link rel="stylesheet" href="https://use.typekit.net/apd4mpy.css">
and have tried to use the code in my child theme functions.php:
function av_add_typekit_stylesheet() {
echo ' <link rel="stylesheet" href="https://use.typekit.net/apd4mpy.css">';
}
add_action('wp_head', 'av_add_typekit_stylesheet');
but I’m not seeing the fonts listed. Do I need to use some css also?
I
I have already uploaded some Moret font files that don’t include the extra characters I need.
They are listed on my fonts but I don’t see any new adobe font listing. Do I need to delete them to get the other fonts?
I also tried using the custom adobe font plugin but that didn’t work either.
Can you help me set this up correctly?
Thanks
Nancy
Hey Munford,
You are only importing a CSS, that won’t add the fonts to any lists in the theme options. You would have to use custom CSS to use your fonts: https://www.w3schools.com/cssref/atrule_font-face.php
Best regards,
Rikard
thanks – got it working
Nancy