Hi,
In your listing, some products have their name in one line, some in two lines.
This little difference change the global height of the blocks. So you have two solutions:
- Set the same height for all products names in the boxes.
- Set the same height for all boxes.
These two solution require to add a CSS rule (in your template CSS or by creating a CSS custom file in HikaShop).
Solution 1
.hikashop_products_listing .hikashop_product_name {
mine-height: 30px;
}
Solution 2
.hikashop_products_listing .hikashop_subcontainer {
min-height: 250px;
}
Regards,