What does the mobile viewport check verify?
It checks for a correctly configured viewport meta tag in the page's <head>. Specifically:
- Tag present — a
<meta name="viewport">tag exists. - Device-width sizing — it sets
width=device-widthso the page matches the screen width. - Sensible scale —
initial-scale=1and no settings that block users from zooming.
A proper viewport tag passes; a present-but-misconfigured tag (for example, a fixed width or zoom disabled) is a warning; a missing viewport tag is a fail.
How is it evaluated, and how is it scored?
GEObubbly inspects the page's <head> for the viewport meta tag and checks its configuration. It's a core, scored Performance & Mobile UX check that runs directly against the fetched HTML.
Why the mobile viewport matters for SEO and GEO
Google uses mobile-first indexing — it crawls and ranks the mobile version of your page, not the desktop one. A page with no viewport meta tag is treated by phones as a desktop layout scaled down to fit, so text is tiny, tap targets are cramped, and users have to pinch and zoom to read anything. That's a poor mobile experience, and Google's mobile-friendliness assessment reflects it. The fix is a single line in the <head>: <meta name="viewport" content="width=device-width, initial-scale=1">, which tells the browser to size the page to the device and is the foundation every responsive layout builds on. Avoid disabling user zoom (user-scalable=no or a locked maximum scale), which harms accessibility. Getting the viewport right is the entry point to the rest of mobile UX — readable fonts and tap targets only matter once the page is sizing correctly. For GEO, a mobile-friendly page is simply a healthier page for engines to crawl and for visitors to land on.