Font on desktop vs. mobile
-
On posts the desktop font is the same size on mobile which looks too big on a smaller screen. Is there any way to make it responsive or smaller on mobile?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
The font-size won’t respond when resizing the browser window. Instead they respond to the browser zoom/type size settings, such as if you press ctrl and + together on the keyboard while in the browser.
You would have to look at using media queries to reduce the font-size at certain intervals where it starts breaking your design and creating scrollbars.
For example, try adding this inside your CSS at the bottom, changing the 320px width for wherever your design starts breaking:
@media only screen and (max-width: 320px) { body { font-size: 2em; } }
- The topic ‘Font on desktop vs. mobile’ is closed to new replies.