Missing Viewport Meta Tag
What This Means
No <meta name="viewport"> element was found in the document's <head>. The page has no instruction to mobile browsers about how to scale the layout.
Why It Matters for SEO
Without a viewport declaration, mobile browsers apply their default rendering behavior: they render the page at a standard desktop viewport width (typically 980px) and then scale the entire rendered layout down to fit the device screen. The result is a page that appears zoomed out, with tiny text and small tap targets — essentially a desktop screenshot shrunk to phone size.
Google uses mobile-first indexing, which means it primarily crawls and evaluates the mobile version of pages. A page without a viewport meta tag is likely to be flagged as "not mobile-friendly" in Google Search Console, which directly affects its ranking potential on mobile devices. Given that mobile represents the majority of web searches, this is a warning-level issue.
What the Platform Checks
The platform scans the document <head> for <meta name="viewport">. Fires when the element is absent.
How to Fix It
Add the viewport meta tag inside <head>:
<meta name="viewport" content="width=device-width, initial-scale=1">
width=device-width— Instructs the browser to match the screen's width in device-independent pixels.initial-scale=1— Sets the initial zoom level to 100%.- Do not add
user-scalable=noormaximum-scale=1— these prevent users from zooming, which is an accessibility violation and may trigger additional Mobile Usability warnings in Search Console.
This is typically a template-level fix. In CMSs, the viewport meta tag should be in the base layout or header template.
Find every pagewithout a viewport tag
The audit flags every page missing the viewport meta tag — fix the base template and all pages are resolved at once.