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
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
It seems to work, thanks!
Is there a way to make heading fonts on mobile smaller?
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
Thank you! Great!