`Hello,
Add to cart (In winkelwagen) buttons to allign at the same height
This can be fixed with some custom CSS. Under Appearance > Customize > Additional CSS, you can add the following code:
.woocommerce ul.products li.product h2 {
line-height: 2.5ex;
height: 5ex;
overflow: hidden;
}
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).`
Thanks a lot that worked excellent.