Reputation: 175
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
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