Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #383408

    Hello, Team Kriesi!

    I have an issue with partly bold partly light font appearance on various browsers using characters j, ā, č, ļ, ķ, ģ, ē, ī, ž, ņ and others like that. Looks like these characters are taken from other fonts. I use Open Sans throughout the whole site.

    Effect looks like: jāsauc

    How can I resolve this issue?

    Regards.

    #384199

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_subset_func($fontlist) {
    	$fontlist .= "&subset=latin,latin-ext";
    	return $fontlist;
    }
    add_filter('avf_google_fontlist', 'add_subset_func');

    Cheers!
    Josue

    #384938

    Thanks!

    Worked for me!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Font appearing part bold part loght on IE and other explorers’ is closed to new replies.