Product listing spacing issue but only for 1 product (others are fine)

Solved

Product listing spacing issue but only for 1 product (others are fine)

Alexandrafj
Excursionist
31 0 9

Hi, does anyone know how to solve this spacing issue/glitch in the space between my product image and info? It is only an issue under the product images of this one listing I have, all the other are total fine which I don't understand. The issue is on a mobile not on a desktop. Thank you!

Screenshot 2025-04-30 at 13.12.04.png

Screenshot 2025-04-30 at 13.12.26.png

 

Accepted Solution (1)

tim
Shopify Partner
4458 530 1629

This is an accepted solution.

This is because the last product image is taller.

I do not remember what product media settings were available for Dawn 2.4.

However, you can manually force images to fit into square -- when configuring "Product information" section in Customize, open "Custom CSS" at the bottom of the section settings and paste this code:

.product__media {
  padding-top: 100% !important;
}

.product__media img {
  object-fit: contain;
}

Before => After

Screenshot 2025-04-30 at 10.06.15 PM.png  Screenshot 2025-04-30 at 10.10.12 PM.png

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 2 (2)

tim
Shopify Partner
4458 530 1629

This is an accepted solution.

This is because the last product image is taller.

I do not remember what product media settings were available for Dawn 2.4.

However, you can manually force images to fit into square -- when configuring "Product information" section in Customize, open "Custom CSS" at the bottom of the section settings and paste this code:

.product__media {
  padding-top: 100% !important;
}

.product__media img {
  object-fit: contain;
}

Before => After

Screenshot 2025-04-30 at 10.06.15 PM.png  Screenshot 2025-04-30 at 10.10.12 PM.png

If my post is helpful, hit the thumb up button -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
Alexandrafj
Excursionist
31 0 9

Thank you so much that makes total sense! Let me try that asap