Issue: Product thumbnail images appear blurry on collection pages in the Dawn theme, while displaying clearly on individual product pages. The main image is affected, but hover images remain sharp.
Root Cause: The theme serves low-resolution images (533px width) on collection pages, insufficient for retina/high-density displays.
Solution Implemented:
Locate card-product.liquid file in theme code
Update the src attribute from width: 533 to width: 800 or higher
Enhance srcset attribute with multiple resolutions (400w, 800w, 1200w) for responsive display
Example fix: src="{{ card_product.featured_media | image_url: width: 800 }}"
Outcome: Original poster successfully resolved the issue after implementing the code changes. A secondary problem with hover images briefly occurred but was self-resolved.
Ongoing: A new user (emilymahy) reports the same fix didn’t work for their site (mahy.co.nz), suggesting additional troubleshooting may be needed—possibly related to source image quality or other theme-specific factors.
Summarized with AI on October 25.
AI used: claude-sonnet-4-5-20250929.
Hi, I’m having trouble with my website where my product image thumbnails are showing up blurry on the collection pages. The images are a good resolution, to the shopify guidelines and appear totally fine and crisp on the product pages themselves but on the collection listing page they’re blurry. The second image that shows on hover seems to be fine but the main image for every product is blurred.
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
before the body ----->
if this code work please do not forget to like and mark it solution
It looks like your collection page is serving low-resolution images, causing them to appear blurry. To fix this, you can adjust the image size in the theme code. In your product-card.liquid or similar file, update the image URL to a higher resolution, like this:
{{ product.featured_image | img_url: '800x' }}
Alternatively, use the full-size image:
{{ product.featured_image | img_url: 'master' }}
You may also want to use the srcset attribute for better responsiveness and higher quality on retina displays:
Let me know if you need help applying these changes! Please feel free to connect with me. Thanks!
Hi Rajat, thanks for your speedy reply. I have looked at the card-product.liquid file and there is a lot of code there, I’m not sure what to change. I’ve copied a bit of the code from this below. Would you possibly be able to have look and advise further? I also have a main-collection-product-grid.liquid file, not sure if I should be looking there too? I’m a bit lost!
Thanks for sharing the code, You’re super close — and you’re 100% looking in the right spot: that card-product.liquid snippet does control the image rendering on your collection page, and I can see the main image logic.
From the code you shared, this line is what determines the image that initially loads:
That’s your culprit! It’s asking Shopify to serve an image resized to 533 pixels wide, which is just a bit too low — especially for retina/high-density screens, which is why it’s looking blurry.
Thank you! That has worked and the images look sharper now, hugely appreciated! But I’ve managed to break something else in the process. There should be a second image which shows on hover, this was working before but has stopped since I changed the code, maybe I accidentally deleted something I shouldn’t have? Do you have any idea where I should look and how I can get the second image to show on hover again?
I’m really glad to hear you found a solution and everything is working now!
If you ever need any help with Shopify customizations or run into any issues in the future, please don’t hesitate to reach out—I’ll be happy to assist.
I am having this same issue and have updated the code as suggested above but it hasn’t improved the quality of the displayed image. Here is the code I have updated