How can I uniformly resize images in Debut collections?

@shoeflylimited

  1. Go to your store. Click on Actions > Edit Code 2. Go to Assets > theme.css add below lines at the bottom of the file.
media screen and (max-width: 749px){
.grid-view-item__image-wrapper .grid-view-item__image {
    position: absolute;
    top: 0;
    max-width: 250px!important;
    max-height: 250px!important;
}

.product-card__image-with-placeholder-wrapper {
    position: relative;
    min-height: 155px;
}
}

@media screen and (min-width: 750px){
.product-card__image-with-placeholder-wrapper {
    position: relative;
    min-height: 255px;
}
}