Strange line up in the product pages

for some reason, the products do this if one gets to long. Any ideas of how I can fix it?

Hi @wicara,

You can try adding a min-height by adding the code below in Theme Options > CSS

.woocommerce li.product  {
    min-height: 600px;
}

Hope this helps

can I achieve this without increasing the height of all the products ?

Hi @wicara,

We can try another way, please remove the min-height then add this in Theme Options > CSS

.woocommerce li.product {
    vertical-align: top;
    display: inline-block;
    float: none;
}

Thanks

1 Like

That worked great thanks

You’re welcome, @wicara.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.