delinea
You can go to file: /templates/ja_alumni//acm/features-intro/tmpl/style-1.php
Look for this script at the end of file:
(function($){
jQuery(document).ready(function($) {
$("#acm-feature-<?php echo $module->id; ?> .owl-carousel").owlCarousel({
addClassActive: true,
items: <?php echo $column; ?>,
itemsDesktop : [1439, 4],
itemsDesktopSmall : [979, 3],
itemsTablet : [768, 2],
itemsTabletSmall : false,
itemsMobile : [479, 1],
itemsScaleUp : true,
navigation : true,
navigationText : ["<i class='fa fa-angle-left'></i>", "<i class='fa fa-angle-right'></i>"],
pagination: false,
paginationNumbers : false,
autoPlay: false
});
});
})(jQuery);
and change the number of columns you want to show in accordingly screen.
For example, I changed itemsDesktop : [1439, 3] to itemsDesktop : [1439, 4] and you should see 4 columns on your screen now.