I\'ve been using Bootstrap\'s carousel class and it has been straightforward so far, however one problem I\'ve had is that images of different heights cause the arrows to bo
If you want to have this work with images of any height and without fixing the height, just do this:
$('#myCarousel').on("slide.bs.carousel", function(){ $(".carousel-control",this).css('top',($(".active img",this).height()*0.46)+'px'); $(this).off("slide.bs.carousel"); });