SOLVED :: How to makes shop page product image equal heigh?

just build the product archive page.
want to ask how to ket product image height equal.

Add aspect-ratio to the image element’s custom CSS.
You probably want square images, so it should be aspect-ratio:1/1 and also set object-fit to cover.

1 Like

thanks for the tips.

1 Like

¿how you did it? i want to force the images size and ratio in the products element (for archive)

custom CSS

.dynamic  a img {
  object-fit: cover;
    aspect-ratio: 1 / 1;

}
1 Like