jonnykates
8/1/2017 - 3:03 PM

Move .headerText div outside the carousel on listing pages

Move .headerText div outside the carousel on listing pages

if( $('.carousel .headerText').length > 0 ){
  $('.carousel').each(function(){
    $thisHeaderText = $(this).find('.headerText');
    $(this).parent().append( $thisHeaderText );
  });
}