HI Yasir,
I'm sorry for this lateness as somehow I missed this topic.
It depends on the layout you used for JA Content Listing, for example with module Agricultural Crops
It's using 'layout-09' so I updated this file on your site:
/templates/ja_findus/html/mod_jacontentlisting/layouts/layout-09/index.php
At approx line 80 of this file, it defines number of items for each view port:
responsive: {
0: {
items: 2
},
600: {
items: 2
},
768: {
items: <?php echo $item_per_row_md;?>
},
1000: {
items: <?php echo $item_per_row_lg;?>,
margin: <?php echo $owl_margin; ?>
}
}
You want to show 2 items on mobile, so I update:
0: {
items: 2
},
and it's showing 2 items per row now on mobile, kindly check.