Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #648904

    Hello, I’m having some problems with Cyrillic fonts on mobile. Even when I have switched all Body and Heading fonts to Open Sans in settings, I’m still not getting Cyrillic open sans on mobile. On desktops everything is fine.

    I would like to be able to try out more fonts for headings, not only open sans

    site – http://simeks.coma.lv/

    Screens from desktop and mobile

    https://www.dropbox.com/s/ing0zrqa2o3fjgb/simeks-desktop.JPG?dl=0
    https://dl.dropboxusercontent.com/u/2547869/simeks-mobile.png

    #649814

    Hey vadikcoma,

    Can you please try adding following code to Functions.php file in Appearance > Editor

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

    and check if that helps?

    Best regards,
    Yigit

    #650302

    It seems to work, thanks!

    #650303

    Is there a way to make heading fonts on mobile smaller?

    #650629

    Hi,

    Please try something like this in Quick CSS under Enfold–>General Styling:

    @media only screen and (max-width: 767px) {
    h1, h2, h3, h4, h5, h6 {
    font-size:80% !important;
    }
    }

    Best regards,
    Rikard

    #650885

    Thank you! Great!

    #650889

    Hey!

    You are welcome, glad we could help! Let us know if you have any other questions or issues :)

    Cheers!
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Cyrillic heading fonts not working on mobile (iphone)’ is closed to new replies.