On my page I need 3 carousel:
One for the banner , another for ruler and one more for evaluations. All will be with images and it would need that each one had its parameter, however with the OwlCarousel I could not do it, since when I make the call of Own it does not allow to modify the other carrousel.
$(document).ready(function(){
$('.owl-carousel').({
loop:true,
margin:10,
nav:true,
responsive:{
0:{
items:1
},
600:{
items:3
},
1000:{
items:5
}
}
})
});
With the script above it stays the same for the 3 and need to split for each to have its characteristic. Thanks!