The code correctly shows two columns on large screens. But for tablet sized screens, both divs take up their own row, each using 12 columns.
I want each of them to be in the same container using 6 columns. I have tried changing the numbers in the classes col-xs-12 col-sm-6 col-md-6 col-lg-4
but nothing has worked.
Here's my code:
<div class="container">
<div class="row col-md-offset-0 col-lg-offset-2">
<p><b>We Offer:</b></p>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4 ">
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
</div>
</div>