How do i get the images the same size as the first one

Hi, how can i get the image in the second screenshot the same size as the first screenshot image?

Hi,

Hope this will help

  • Check Your Theme Settings , “Find images same size” or “Crop images to fit” and turn it on.
  • If required Resize Images Manually
  • Use Shopify built-in editior
  • Use CSS

CSS code example

.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
}