I had the same problem and used a jquery equalheight script to set all the elements to the same height once the page loaded, you can see the effect of that on my site here ...
https://www.artistpapers.co.uk/shop
In my template head area load the javascript (attached) with...
<script type="text/javascript" src="/your_path/jquery.equalheight.js"></script>
<script type="text/javascript">
jQuery(window).load(function() {
jQuery(function(){
jQuery('.hikashop_subcontainer').equalHeight();
});
});
</script>
There may be better solutions but that worked for me.
Ian
This attachment is hidden for guests.
Please log in or register to see it.