Hi again,
Thank you for updating the credentials. It works now. I checked your setup and I see you’ve assigned the same class equalize
to all of your sections and the script is assigning the max height from all the columns in those sections and assigning the height to all of your columns inside the class equalize
so you need to assign different class to each of your section for example equalize_one
to your first section, equalize_two
to the second section and equalize_three
to the third section and then try updating your code with the following one:
(function($){
$(window).bind('ready load resize', function(){
var max_one = 0, max_two = 0, max_three = 0,
mobile = $(window).width();
if ( mobile > 767 ){
$(".equalize_one .x-column").each(function(index, el) {
if( $(this).height() > max_one ){
max_one = $(this).height();
}
});
$(".equalize_one .x-column").css('height', max_one);
$(".equalize_two .x-column").each(function(index, el) {
if( $(this).height() > max_two ){
max_two = $(this).height();
}
});
$(".equalize_two .x-column").css('height', max_two);
$(".equalize_three .x-column").each(function(index, el) {
if( $(this).height() > max_three ){
max_three = $(this).height();
}
});
$(".equalize_three .x-column").css('height', max_three);
}
});
})(jQuery);
Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!