Can i set the category height?

I added the subcategories to a category they do not need to be as high as products can I set the height for only the subcategories?

Hello @wicara,

Thanks for providing the details and the link.

I have checked the page and you have this code added in the Global CSS:

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

This sets a minimum height to all the items as that displayed in the archive pages.

You can try removing that code or update this to:

.archive.woocommerce li.product.custom {     
    min-height: 520px;
}

This will target specifically those items with the custom class which is not present to the sub category items.

Hope this helps.

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