I'm attempting to have two column divisions appear on the same line.
Take a look at my code:
<div class="col-md-12">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
Left Division
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
Right Division
</div>
</div>
</div>
This layout is responsive up to 574px, but when the browser size is reduced below that, the divisions appear on two separate rows. My goal is to have them on the same line (left & right)
https://i.sstatic.net/wD6gc.png
Please refer to the image linked above to see the issue.