jQuery(function($){ var checkDimension = function(){ var rcol = $('.anief-before-contents-bottom-right').first(); var thisMod = $('#myCarousel'); var maxHeight = rcol.height() - 20; //thisMod.css({'height' : maxHeight, 'overflow':'hidden'}); var carousels = $('.carousel-inner .item',thisMod); var imgHeight = 0; carousels.each(function(i,carousel){ carousel = $(carousel); var image = $('.slide-wrap-image',carousel); var text = $('.articles-container',carousel); var iHeight = image.height(); imgHeight = imgHeight < iHeight ? iHeight : imgHeight; }); carousels.each(function(i,carousel){ carousel = $(carousel); var image = $('.slide-wrap-image',carousel); var text = $('.articles-container',carousel); var newHeight = maxHeight - imgHeight - 1; if(newHeight > 80){ text.css({'height':newHeight,'overflow' : 'hidden'}); } }); }; $(window).on('load',function(){ checkDimension(); }); $(window).on('resize',function(){ checkDimension(); }); });