Eric
Eric

Reputation: 175

WooCommerce aligning pictures of products

I am trying to align the pictures of the products so that the pictures are aligned horizontally.

For example, the third picture in the first category here is upper compared to the other 2 because its title is shorter. How can I have all the pictures aligned just like in a table?

(link for the example is this)

Upvotes: 1

Views: 73

Answers (1)

7uc1f3r
7uc1f3r

Reputation: 29650

There are several options, one of which is to add a min-height with CSS for the title (h2)

.type-product .woocommerce-loop-product__title {
    min-height: 63px;
}

Upvotes: 1

Related Questions