• The fonts are changing when I minimize the window or use on mobile device. Any advice? I don’t believe I changed any default settings. Stained Glass theme.

Viewing 1 replies (of 1 total)
  • Hey there adminmal,

    How are you doing today?

    I’ve checked the theme on my sandbox site and I can see the same thing. After closer inspection I’ve found the following code:

    @media screen and (min-width: 680px)
    .site {
        font-family: 'Open Sans', sans-serif;
    }

    This comes from an option related to picking font in Appearance -> Customize -> Customize Font. So depending on the font chosen there the code is being added to your site.

    What happens is when you go below 680px is that there is no font family defined and site falls back to a default font.

    To keep the same font applied on smaller resolutions as well please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .site {
        font-family: 'Open Sans', sans-serif;
    }

    This should apply the same font on mobile resolutions as well.

    Hope this helps 🙂

    Cheers,
    Bojan

Viewing 1 replies (of 1 total)
  • The topic ‘Fonts change when in mobile mode’ is closed to new replies.