Site logo

Archived topic

Any Plans to Support Global (Tablet/Mobile) Fonts?!

18 replies · Started by enviedbymost on September 16, 2018

Viewing posts 1–15 of 19

Pleeeeeease. Haha.

Hi there,

Different font families on tablets and mobile? Or?

My bad for not being clear. :(

I mean, global font sizes. As far as I can see, you're only able to set a global font size for desktop, and not tablet/mobile?

Maybe I'm wrong (hopefully). 😂

Ah, we add mobile font size options for some of the larger font sizes (site title, h1, h2), but we don't add them everywhere.

Which elements do you find yourself needing separate options for?

Ahhh, I just found the mobile settings for mobile!

In answer to your question, the main body copy! :) (under Typography > Body)

Interesting - are you needing a larger font size on mobile?

Usually I've found that what works on desktop works nicely on mobile as well, but there are always exceptions :)

Haha, smaller actually!

tbh, I'm probably overthinking it, and attribute this to my OCDic nature lol. I've restored everything to a single font size. 😅 💪🏼

Deleted.

I'll definitely keep this in mind :)

I agree, could you please include the option to make the Mobile fonts smaller than the Desktop? This is definitely would be better for usability.

Thanks a lot

Hi thanks,

But as discussed above there is no option for the mobile body text and other elements

This is something that we are looking at but it is some very simple CSS to accomplish.

Thanks. Could you please give me the CSS to change the Mobile fonts? I need it for the normal body text pages, blog posts, widgets and comments

So something like this, body covers the vast majority of paragraph elements:

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

You can increase the max-width property to: 768px to include these changes on tablet. Currently this code will cover the plus size Mobiles.

This archived topic is closed to new replies.