Your viewport tag is restricting how much users can zoom in on your page. This is a major accessibility problem for users with low vision who rely on zooming to read content. Web accessibility guidelines recommend allowing users to scale up to 500%, so a restrictive value fails to meet this standard.
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
The best practice is to simply remove the `maximum-scale` attribute altogether. If you must set it, ensure it is `5.0` or higher.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Removing zoom restrictions is a critical step for web accessibility. It ensures that all users, regardless of visual ability, can comfortably access and read your content.
This issue can affect your site's search engine rankings and user experience. Addressing it promptly helps ensure optimal performance and visibility in search results.
Black SEO Analyzer automatically checks for this warning during site analysis, along with hundreds of other technical SEO issues.
Choose the license that fits your needs and start getting the deep, actionable insights you deserve.