Site logo

Archived topic

Body Font Size for Mobile vs Desktop

1 reply · Started by Ian on April 21, 2021

Viewing posts 1–2 of 2

Am I missing something? I always thought there was a way to set font sizes between desktop and mobile inside Customizer > Typography > Body. I no longer see a Mobile icon to adjust font sizes. Any ideas?

Hi there,

No - the mobile sizes are available for the Customizer > Typography > Headings.

For the body size - you would use a little CSS:

@media(max-width: 768px) {
  body {
    font-size: 16px;
  }
}
This archived topic is closed to new replies.