Hello,
I also have problems using a custom font with @fontface. The body style is working fine but it doesn´t work at the headline styles using the same custom css. By reading the similar posts I couldn´t find the problem. The theme is running on a Enfold child theme, the current address is platzdesign.de/sub.
Do you have an idea how I can get the headlines also displayed in the museo font.
Thanks
Hi jaami!
Seems like you already figured it out? When i check your text with Font Face Ninja add-on, i can see that all font families are currently”MuseoSans-300″ on your page.
Cheers!
Yigit
Thanks,
no, the problem is not solved.
I added Museo-sans to the drop-down menuin the theme child function.php by
add_filter( ‘avf_google_content_font’, ‘add_custom_font’);
add_filter( ‘avf_google_heading_font’, ‘add_custom_font’);
function add_custom_font($fonts) {
$fonts[‘Museo-300’] = ‘Museo-300’;
$fonts[‘Museo-500’] = ‘Museo-500’;
return $fonts;
}
additional to the @fondface in the style.css, the body text is fine with this but the headline are still displayed in Helvetica and I need them in
Museo-sans
I