Hi,
Please accept my apologies for the delay in response. I really appreciate your patience.
Currently there is no setting to change the slide column.
However, you can try these steps:
- Install and activate the TC Custom JavaScript plugin
- Go To Appearance > Custom JavaScript
- Paste the following code into the provided box
(function($){
if ( $.fn.owlCarousel ) {
$( '.ca-slider.js-ca-article-slider' ).owlCarousel('destroy');
// Article Carousel/Slider
$( '.ca-slider.js-ca-article-slider' ).each( function() {
$( this ).owlCarousel({
loop: true,
margin: 10,
nav: false,
dots: false,
autoplay: true,
autoplayHoverPause: true,
responsiveClass: true,
responsive:{
0:{
items: 2,
margin: 5
},
768:{
items: 3,
margin: 10
},
1200:{
items: 3
}
}
});
} );
}
})(jQuery);
- Update
Regards,
Kharis
aThemes Support