I have a carousel that I have implemented thanks to Owl Carousel. My problem is that I can only get to show a single active element in the center and I need two to show.
I tried to edit the code of the "owl.carousel.min.js" but I dont understand very well what I have to modify.
Also I show you the code that I have.
jQuery(document).ready((function (e) {
"use strict";
e("#customers-testimonials").owlCarousel({
loop: !0,
center: !2,
items: 1,
margin: 0,
autoplay: !0,
dots: !0,
autoplayTimeout: 5e3,
smartSpeed: 350,
responsive: {
0: {
items: 1
},
768: {
items: 2
},
1170: {
items: 4,
slideBy: 1,
nestedItemSelector: !2,
}
}
})