Hi @core365,
To make the height of all 4 products, make sure that the images are in proper aspect ratio and size. In your case the image of the 4th product is not at the same height, I would suggest you add the image in the same size or add the following JavaScript code into the Theme Options > JS to match the height forcefully while loaded.
jQuery(document).ready(function($){
var max=0;
jQuery(".memorial-range li.product img").each(function(index, el) {
console.log( jQuery(el).height() );
if( jQuery(el).height() > max ){
max = jQuery(el).height();
}
});
console.log( max);
jQuery(".memorial-range li.product img").css('height', max);
});
Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks