Fix Guide
How to Fix a Missing Viewport Meta Tag
The page does not expose the mobile viewport tag needed for responsive layouts.
Recommended fix
Add a viewport meta tag so mobile browsers render the page at device width.
This guide is designed to pair with a scanner report. Run a URL scan first, then follow the implementation steps.
Developer task
Add <meta name="viewport" content="width=device-width, initial-scale=1"> in the document head.
Implementation steps
How to apply this fix
- Add <meta name="viewport" content="width=device-width, initial-scale=1"> to the document head.
- Avoid disabling zoom (no user-scalable=no or maximum-scale=1) for accessibility.
- Verify the layout reflows correctly on small screens after the change.
- Re-scan to confirm the viewport meta tag is detected.
Verify
Re-run the URL scan after deploying the change to confirm the issue clears and the Themerella Score updates.
Related guides