Check if the viewport is configured for proper site display on mobile devices
This only checks the viewport. For a comprehensive analysis, use the full page check.
You can also audit your entire site. Duplicate titles and descriptions, orphan pages, broken links between sections, and other site-wide issues can only be found with a full site audit.
If you don't have an SEO specialist, we can help fix the errors found.
The <meta name="viewport"> meta tag controls how the page displays on mobile devices. Without it, the smartphone browser will show the desktop version scaled down, forcing users to zoom and scroll manually.
width=device-width is setSince 2019, Google uses mobile-first indexing — the search bot primarily evaluates the mobile version of the site. Search engines also consider mobile-friendliness as a ranking factor. Without a properly configured viewport, the site won't pass the mobile-friendliness test and will lose positions in mobile search results.
device-width — page doesn't adaptuser-scalable=no) — reduces accessibilitymaximum-scale=1 value — prevents users from zooming text<meta name="viewport" content="width=device-width, initial-scale=1">. It sets the viewport width equal to the device width and sets the initial scale to 1:1.width=device-width may make it unreadable on mobile. However, the best solution is to make the site responsive. Without responsiveness and without viewport, the site will lose positions in mobile search.