resize all product images in the same size

hi,

my website is - https://furryfriends.ae/

I have 2000 products on my store and I need them to be in the same size using code. right now the collection page is looking very bad cause some images are too big and some are too small.

please help urgently.

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset → frame.scss.css and paste this at the bottom of the file:
.product-container img {
    height: 250px;
    width: 250px;
    object-fit: cover;
}