Found a slick jquery for carousel slider – that we think it’s better then owl carousel that we ussually use.
https://github.com/kenwheeler/slick
function createSlick(){ jQuery(".slick").not('.slick-initialized').slick({ autoplay: true, arrows: true, slidesToShow: 4, slidesToScroll: 1, responsive: [ { breakpoint: 769, settings: { slidesToShow: 4, slidesToScroll: 1 } } ,{ breakpoint: 768, settings: { slidesToShow: 2, slidesToScroll: 1 } }, { breakpoint: 1100, settings: 'unslick' } ] }); } createSlick(); $(window).on( 'resize', createSlick);