How to Fix Stretched or Cropped Images on Product Pages in Squarespace 7.1

Are your merchandise photos appearing clipped, enlarged, or weird in your Squarespace shop? You're not alone.

As standard, Squarespace applies layout rules - these are often preset and force your product images to have a fixed aspect ratio, even if this means they lose the correct cropping or distortion (usually the case if you have both landscape and portrait product images).

In this tutorial, we’ll show you how to remedy these gripes with clean, lightweight CSS.

The Problem: Images Are Being Cropped or Distorted

If you're using this CSS:

Copied!
.product-list .grid-image-wrapper img {
    object-fit: fill !important;
}

You might be seeing the following issues:

  • Product images are stretched unnaturally

  • Landscape photos appear squished

  • Portrait images look wide and blurry

That’s because object-fit: fill forces the image to fill its container without maintaining its original aspect ratio.

The Right Solution: Use object-fit: contain

Replace the previous CSS with:

Copied!
.product-list .grid-image-wrapper img {
  object-fit: contain !important;
  width: 100%;
  height: auto;
}

Why This Works:

  • Maintains the original proportions of your image

  • Prevents cropping and distortion

  • Ensures the image resizes cleanly on all screen sizes

Expert Tip: When to Use Other object-fit Values

object-fit Value What It Does Best Use Case
fill Stretches the image to fill the space Avoid for photos/products
cover Fills container, but may crop Great for hero banners

Final Thoughts

Clean, uniform product photographs create trust and give your store branding a polished edge. Simply make the switch from object-fit: fill to object-fit: contain to ensure that your images aren’t stretching and cropping in unexpected ways, while staying true to their initial sizes.

If you’re using square, portrait, or landscape photos, with this single CSS tweak, you won’t have to worry about how your squarespace 7.1 product pages will display. Small tweaks like this not only improve design, they improve user experience, and may even aid sales.


Frequently Asked Questions

Walid Hasan

I'm a Professional Web developer and Certified Squarespace Expert. I have designed 1500+ Squarespace websites in the last 10 years for my clients all over the world with 100% satisfaction. I'm able to develop websites and custom modules with a high level of complexity.

If you need a website for your business, just reach out to me. We'll schedule a call to discuss this further :)

https://www.squareko.com/
Previous
Previous

How to Show Different Galleries on Desktop vs Mobile in Squarespace 7.1

Next
Next

How to Change Gallery Slideshow Simple Arrows with Icons in Squarespace