I have recently created an eCommerce site and uploaded product images which are all 800 x 800. The problem is in catalogue view they look blurry but on the single product they are nice and crisp.
The theme displays catalogue images at 290 x 290 and the default css is:
@media (min-width: 768px) {
.product-item .wrap-img img {
width: 100%;
height: 100%;
}
}
How can I fix this? Do I need to resize the images, use some sort of css, something else??
Thanks