Missing viewport tag: the page is no longer mobile-friendly

In brief

Without the meta viewport tag the page is no longer mobile-friendly, and Google, which indexes mobile-first, ranks a page unreadable on phones poorly. It is almost always a layout that lost its tag during a deploy: restore it in the head.

CriticalP1 — Direct ranking

What is it?

The viewport tag is gone.

Why it hurts SEO and AI

Without a viewport, the page is no longer mobile-friendly. Google indexes mobile-first: a page unreadable on mobile is a poorly ranked page. It is almost always a layout/template that lost its tag during a deploy.

When it is NOT a problem

  • The page is not meant for mobile users or for indexing (internal tool, back office shown on desktop only).
  • The viewport was removed on purpose for a test and will be put back before the next release.
  • You are on the very first crawl of the page: Seogard does not alert until it has a baseline version with the tag.
Before
<head>
  <meta charset="utf-8">
  <title>Trail running shoes</title>
  <!-- viewport lost during the deploy -->
</head>
After
<head>
  <meta charset="utf-8">
  <title>Trail running shoes</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

Without this line, mobile shows the page at a scaled-down desktop width: tiny text, forced zoom, a broken experience that Google notices.

How to fix it

  1. Open the page source (Ctrl+U) and confirm the meta name=viewport tag is missing from the head.
  2. Find the layout or head template that lost the tag in the last deploy.
  3. Restore the standard tag meta name=viewport content=width=device-width, initial-scale=1 in the head.
  4. Redeploy, re-crawl, and check the mobile render (the browser's responsive inspection tool).

This scan checks technical compliance: viewport, charset, HTTPS, hreflang

Is this issue on your site?

Did a deploy drop the viewport tag on your pages? Enter a URL: Seogard checks the head of your raw HTML on every crawl and alerts you the moment it disappears. Free, no credit card.

  • No credit card
  • Result in ~30 s

What you get back

The page remains eligible for good mobile-first rankings.

Seogard catches this regression automatically — through its continuous SEO monitoring.

Frequently asked questions

What does the meta viewport tag do?

It tells the browser to fit the page width to the device screen. Without it, mobile renders the page at desktop width, unreadable and poorly rated by Google.

Why does the viewport tag disappear after a deploy?

Almost always a modified layout or head component that lost the line: the tag then drops on every page sharing that template.

Related rules

Updated July 10, 2026