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

Viewport uses fixed width instead of device-width — the fix

The viewport meta tag specifies a fixed pixel width instead of device-width. This prevents the page from adapting to different screen sizes and breaks responsive design.

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 viewport uses fixed width instead of device-width hurts your rankings

A fixed-width viewport forces all devices to render the page at a specific width, ignoring the actual screen size. Mobile devices will either show a tiny, unreadable version or require horizontal scrolling. Google's mobile-first indexing penalizes pages that are not mobile-friendly, and a fixed-width viewport is a definitive failure.

This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it.

How to fix it

Change the viewport width from a fixed pixel value to device-width. This allows the page to adapt to the screen width of any device.

<!-- Before -->
<meta name="viewport" content="width=1024" />

<!-- After -->
<meta name="viewport" content="width=device-width, initial-scale=1" />

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 "Viewport uses fixed width instead of device-width" mean?

The viewport meta tag specifies a fixed pixel width instead of device-width. This prevents the page from adapting to different screen sizes and breaks responsive design.

Why does viewport uses fixed width instead of device-width matter for SEO?

A fixed-width viewport forces all devices to render the page at a specific width, ignoring the actual screen size. Mobile devices will either show a tiny, unreadable version or require horizontal scrolling. Google's mobile-first indexing penalizes pages that are not mobile-friendly, and a fixed-width viewport is a definitive failure.

How do I fix viewport uses fixed width instead of device-width?

Change the viewport width from a fixed pixel value to device-width. This allows the page to adapt to the screen width of any device.

How serious is this issue?

This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it. 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 viewport uses fixed width instead of device-width 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 viewport uses fixed width instead of device-width, and hands you a ready-made fix task.

Check my site free

Related mobile guides