Код 1. Описание
<!-- Тильдошная поэкранный скролл для Тильды -->
function t688_unifyHeights(recid) {
if($(window).width()>=960){
$('#rec'+recid+' .t688 .t-container .t688__row').each(function() {
var t688_highestBox = 0,
t688_currow = $(this);
$(':not(.t688__featured) .t688__inner-col', this).each(function(){
var t688_curCol = $(this),
t688_curText = t688_curCol.find(".t688__textwrapper_inner"),
t688_curColHeight = t688_curText.outerHeight();
if(t688_curColHeight > t688_highestBox){t688_highestBox = t688_curColHeight;}
});
$('.t688__textwrapper',this).css('height', t688_highestBox);
$('.t688__featured',this).css('height',$('.t688__col',this).height()+'px');
});
} else {
$('.t688__textwrapper').css('height', 'auto');
$("#rec"+recid).find(".t688__featured").css({'height':($("#rec"+recid).find(".t688__col").height()+'px')});
}
}