Site logo

Archived topic

Woocommerce product heights issue

5 replies · Started by Greg on August 27, 2019

Viewing posts 1–6 of 6

Any ideas how I can fix the heights issue of different products?

Hi there,

go to Customizer > Woocommerce and make an adjustment to the Thumbnail Width say 360px. And then update the Customizer. This should rebuild the thumbnails.

Hi David, the problem is the height. Not the width. Did you check the site and see the different products? Some are very tall and others not. It looks terrible.

This is because all your images are different aspect ratios. Ideally you want them all to be the same. If not possible - then try this CSS to force them:

.woocommerce ul.products li.product a img {
    height: 250px;
    object-fit: contain;
}

Looks like it solved it. Thank you.

Glad to be of help.

This archived topic is closed to new replies.