How to Fix a Missing Viewport Meta Tag
Add the tag that makes a responsive layout actually apply on phones.
Without a viewport meta tag, mobile browsers render the page at a desktop width and scale it down, so text is unreadable and every media query is bypassed. One line fixes it. A site can be fully responsive in CSS and still look broken on a phone purely because this tag is absent.
Why It Matters
With mobile-first indexing, the mobile rendering is what gets indexed and ranked. A page that renders zoomed-out fails both the ranking evaluation and the visitor.
How to Fix
Add the tag to the head
Do not disable zoom
Check every template
Verify on a narrow viewport
Code Fix
html<head>
<!-- no viewport tag: mobile renders at ~980px and scales down -->
</head><meta name="viewport" content="width=device-width, initial-scale=1">Platform-Specific Instructions
Themes should output this in header.php. Very old themes sometimes omit it.
Next adds a sensible default; it goes missing only if the viewport export is overridden with something incomplete.
Fixed that one.
Now find the rest.
A free audit ranks every issue on your site by the score points it costs — and links each one straight to its guide.
Run a free audit