User scaling disabled in viewport: what it is, why it matters, and how to fix it
The viewport meta tag includes user-scalable=no or maximum-scale=1, preventing users from zooming in on the page. This is an accessibility violation and poor user experience.
Where this fits: mobile in SEO
Why user scaling disabled in viewport hurts your rankings
Disabling pinch-to-zoom prevents users with low vision from enlarging text and content to a readable size. This is a WCAG 2.1 Level AA violation (Success Criterion 1.4.4) and is flagged by Lighthouse as an accessibility issue. Google considers accessibility as part of overall page quality assessment.
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
Remove user-scalable=no and maximum-scale=1 from the viewport meta tag. Allow users to zoom to at least 500% per WCAG requirements.
<!-- Before -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1" />
<!-- After -->
<meta name="viewport" content="width=device-width, initial-scale=1" />Frequently asked questions
What does "User scaling disabled in viewport" mean?
The viewport meta tag includes user-scalable=no or maximum-scale=1, preventing users from zooming in on the page. This is an accessibility violation and poor user experience.
Why does user scaling disabled in viewport matter for SEO?
Disabling pinch-to-zoom prevents users with low vision from enlarging text and content to a readable size. This is a WCAG 2.1 Level AA violation (Success Criterion 1.4.4) and is flagged by Lighthouse as an accessibility issue. Google considers accessibility as part of overall page quality assessment.
How do I fix user scaling disabled in viewport?
Remove user-scalable=no and maximum-scale=1 from the viewport meta tag. Allow users to zoom to at least 500% per WCAG requirements.
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 user scaling disabled in viewport 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 user scaling disabled in viewport, and hands you a ready-made fix task.
Check my site free