I've been trying to wrap my head around how these work but so far I'm having no luck. On the website I have, the browser version looks like this:
<div class="col-sm-4">
<div class="aside">
<div class="promo">
<p>left content</p>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="content">
<p>right content</p>
</div>
</div>
For the browser this works great, but on the mobile I'd like it to be layed out like this:
<div class="col-sm-8">
<div class="content">
<p>right content</p>
</div>
</div>
<div class="col-sm-4">
<div class="aside">
<div class="promo">
<p>left content</p>
</div>
</div>
</div>
How would I lay it out with the push and pulls to get it to rearrange properly?