Whenever my display size is less than 1170px, the width of the owl carousel div overflows. How can I fix this issue?
jQuery(document).ready(function($) {
"use strict";
// CUSTOMERS TESTIMONIALS CAROUSEL
$('#customers-testimonials').owlCarousel({
loop: true,
center: true,
items: 3,
margin: 0,
autoplay: true,
dots:false,
autoplayTimeout: 8500,
smartSpeed: 450,
responsive: {
0: {
items: 1
},
768: {
items: 2
},
1170: {
items: 3,
nav:true
}
}
});
});