I want it to display 6 articles like this, and then be able to slide to the next frame with another 6 articles: view img
When I use this code, it only shows 3 articles per frame:
$('.owl-carousel').owlCarousel({
loop:false,
margin:10,
}
When I use "responsive", it shows 6 articles but all in horizontal:
$('.owl-carousel').owlCarousel({
loop:false,
margin:10,
responsive:{
1000:{
items:6
},
}
How can I display 3 articles on top, and 3 articles on the bottom?