lorenzodf Hi. Please remove the css I gave You before. Let's try a different approach. Instead add this code to custom code field in template's configuration.
<script type="text/javascript">(function($) {$(document).ready(function() {
$(window).resize(function(){
var maxGKheight = 0;
$('.gkNspPM .gkImage').each(function(){
if( $(this).height() > maxGKheight ){
maxGKheight = $(this).height();
}
});
$('.gkNspPM .gkImage').height(maxGKheight);
});
});})(jQuery)</script>
It may need tweaking. So please try and leave it for me to check.