Reply To: Font size default in EM instead of PX

Home Forums Support Font size default in EM instead of PX Reply To: Font size default in EM instead of PX

Home Forums Support Font size default in EM instead of PX Reply To: Font size default in EM instead of PX

#168876
Tom
Lead Developer
Lead Developer

Hi Paul,

I thought about this when I was originally creating GP, and didn’t think the theme was big enough for it to make a big difference on mobile.

For example, you can just use a little piece of code and adjust the body size:

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

Doing that will change most of the text on the site except for navigation and headings, which can also be altered.

You can of course use EMs in your CSS as well.

Making the change now would mean thousands of users would lose their font settings, so it’s kind of a tricky one.

Let me know if you need more info 🙂