We've added a small but useful check to SiteVitals seo monitoring: viewport meta tag detection.
It sounds more technical than it is. Here's what it means.
What it is
Every webpage can include one line in its HTML, usually something like:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
This single tag tells a mobile browser how to render the page. Without it, phones default to showing the page as if it were on a desktop screen, then shrinking the whole thing down to fit. The result is the page you've probably seen before: tiny text, pinch-to-zoom required, awkward horizontal scrolling.
With the tag present and correctly configured, the browser renders the page at the phone's actual width from the start. MDN has a good technical explanation of the mechanism if you want the full detail.
Why it matters
Most sites built in the last decade already have this, because modern themes and frameworks add it by default. But we still see it missing, especially on:
- older custom-built pages that predate responsive design
- pages with unusual templates or third-party embeds that strip it out
- staging or legacy pages that never got updated
When it's missing, the page still works. Nothing crashes. But mobile visitors get a worse experience, and it's an easy thing to miss because it doesn't show up unless you're specifically looking for it, or you're testing on an actual phone rather than a desktop browser resized smaller.
What SiteVitals does with it
The check looks for the tag and confirms it declares width=device-width.
If it's missing, or present but not configured for responsive rendering, we flag it as a warning.
It's cheap to fix, usually a one-line addition for a developer, and it's the kind of thing worth
catching before a client notices it themselves on their phone.
It won't tank your scores on its own. But it's one more signal we check automatically, so you don't have to remember to. If you want to see what else gets checked, you can run our free website seo test against any URL.
By Tom Freeman · Co-Founder & Lead Developer
Full-stack developer specialising in high-performance web applications and automated monitoring.