Hi, using the below JS I can force two columns to be the same height based on the tallest column. However, it doesn’t seem to work with three columns (it uses the middle-height column, which means one column is too long)… Any tips:
(function($){
  $(window).bind('ready load resize', function(){
    var max = 0,
        mobile = $(window).width();
    if ( mobile > 767 ){
      $(".equalize .x-column").each(function(index, el) {
        if( $(this).height() > max ){
            max = $(this).height();
        }
      });
      $(".equalize .x-column").css('height', max);
    }
  });
})(jQuery);
        

