Home Forums Exoplanet Image resizing: fit to grid without hard crop (Exo / Woo) Reply To: Image resizing: fit to grid without hard crop (Exo / Woo)

#4899
Andy
Keymaster

To make all the products the same height, you could use CSS styling to set a fixed height.

Write something like this into ‘Customize’ > ‘Additional CSS’:

/*overall height including image, title and price*/
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    height: 500px;
}

/*height of the image area*/
.woo-thumb-wrap {
    height: 300px;
}

Change the height values to suit your site.