Images not responsive for mobile: what it is, why it matters, and how to fix it
One or more images on this page do not use responsive techniques (srcset, sizes, or CSS max-width) and may display at inappropriate sizes on mobile devices.
Where this fits: mobile in SEO
Why images not responsive for mobile hurts your rankings
Non-responsive images can overflow the viewport on mobile, cause layout issues, or force the browser to download unnecessarily large files. This impacts both mobile usability (Google's mobile-friendly assessment) and performance (Core Web Vitals), both of which affect mobile search rankings.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Add max-width: 100% and height: auto to images via CSS. Use srcset and sizes attributes to serve appropriately sized images for each device. Use the <picture> element for art direction across breakpoints.
img {
max-width: 100%;
height: auto;
}Frequently asked questions
What does "Images not responsive for mobile" mean?
One or more images on this page do not use responsive techniques (srcset, sizes, or CSS max-width) and may display at inappropriate sizes on mobile devices.
Why does images not responsive for mobile matter for SEO?
Non-responsive images can overflow the viewport on mobile, cause layout issues, or force the browser to download unnecessarily large files. This impacts both mobile usability (Google's mobile-friendly assessment) and performance (Core Web Vitals), both of which affect mobile search rankings.
How do I fix images not responsive for mobile?
Add max-width: 100% and height: auto to images via CSS. Use srcset and sizes attributes to serve appropriately sized images for each device. Use the <picture> element for art direction across breakpoints.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the mobile family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects images not responsive for mobile on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by images not responsive for mobile, and hands you a ready-made fix task.
Check my site free