I have the following bootsrap grid on my site. It works well for large and medium screen sizes but on a mobile/smaller screen I'm only seeing 1 item - basically all the columns are stacked on smaller screens. It's like the browser is not respecting the "col-xs-6" class in the column.
Any ideas of how I can troubleshoot this? I've tried to look at inspector but I'm pretty lost.
I'm using a Bootswatch v5.1.1 template called Darkly if that makes any difference.
<div class="container-fluid">
<h1>new and trending</h1>
<div class="row">
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
<div class="col-xs-6 col-md-4 col-lg-2">column</div>
</div>
</div>