You have also opened a ticket with us (Truly Fine Pixels, the author of the theme) and we will get in touch with you shortly to see if there’s something that we can do about it
Yes, you can set the product image size to a max width of 104x104 pixels to prevent Shopify from enlarging them.
Here’s how to do it in the Maranello theme:1. Go to Shopify Admin > Online Store > Themes.
Click Actions > Edit Code on your active theme.
Open theme.css or base.css (or another main CSS file in the theme).
Add the following code at the bottom of the file:
/* Set max width and height for product images */
.product-card__image img {
max-width: 104px;
max-height: 104px;
width: auto;
height: auto;
}
Save the file and refresh your store to see the changes.
Notes:- If the images are still stretched, check for any object-fit properties in the CSS and adjust accordingly.
This change will apply to all product images. If you only want it for specific sections, you may need to modify the CSS selectors.
Need an Easier Way? Try EasyEdits
I’m the developer of EasyEdits—a Shopify app that helps you make quick, simple store edits without coding. It’s free to try, and you can keep the changes even if you don’t subscribe!