Skip to main content
New: 190 SEO checks now available. See what's new
mediumMobileFONT_SIZE_TOO_SMALL

Font size too small for mobile — the fix

Text on this page uses font sizes smaller than 12px, making it difficult to read on mobile devices without zooming. Google's mobile-friendly test flags text smaller than 12px.

Where this fits: mobile in SEO

Google indexes the mobile version of your site — desktop is the afterthought, not the other way round. Mobile issues (missing viewport, tap targets too close, content wider than the screen, intrusive interstitials) directly gate rankings for every query. With most traffic on phones, a mobile problem is not a subset of your audience — it is your audience.

Why font size too small for mobile hurts your rankings

Small text forces mobile users to pinch-to-zoom to read content, creating a poor experience. Google's mobile-friendly assessment specifically checks for legible font sizes, and pages with too-small text may be classified as not mobile-friendly, hurting mobile search rankings.

This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.

How to fix it

Set a base font size of at least 16px for body text and ensure no text is smaller than 12px. Use relative units (rem, em) instead of fixed pixels to allow text to scale appropriately across devices.

body {
  font-size: 16px;
  line-height: 1.5;
}

small, .caption {
  font-size: 0.875rem; /* 14px */
}

Mobile best practices

  • Ship a correct viewport meta tag on every page — it is one line and it gates everything.
  • Keep tap targets ≥ 44×44px with real spacing between them.
  • Never let content overflow the viewport horizontally.
  • Test on a real mid-range phone over 4G, not just desktop devtools.
  • Avoid intrusive interstitials — Google demotes pages that greet mobile users with a wall.

The full library: SEO best practices, by category.

Frequently asked questions

What does "Font size too small for mobile" mean?

Text on this page uses font sizes smaller than 12px, making it difficult to read on mobile devices without zooming. Google's mobile-friendly test flags text smaller than 12px.

Why does font size too small for mobile matter for SEO?

Small text forces mobile users to pinch-to-zoom to read content, creating a poor experience. Google's mobile-friendly assessment specifically checks for legible font sizes, and pages with too-small text may be classified as not mobile-friendly, hurting mobile search rankings.

How do I fix font size too small for mobile?

Set a base font size of at least 16px for body text and ensure no text is smaller than 12px. Use relative units (rem, em) instead of fixed pixels to allow text to scale appropriately across devices.

How serious is this issue?

This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the mobile family of checks.

How do I find every page affected by this on my site?

Run a free Dr Urls audit: it crawls your site, detects font size too small for mobile on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.

Does your site have this issue?

A free Dr Urls audit crawls your site, finds every page affected by font size too small for mobile, and hands you a ready-made fix task.

Check my site free

Related mobile guides