Basically, I want a certain column (search) on the right sidebar to be on top when on mobile devices and still maintain the right sidebar on desktop views.
So here's what I have so far..
<div class="container">
<div class="col-md-3 col-md-push-9">B</div>
<div class="col-md-9 content col-md-pull-3">A</div>
<div class="col-md-3 col-md-push-9">C</div>
</div>
It looks like this on mobile (which is what I want)
| B |
| A |
| C |
However, on desktop, it looks like this (there's a gap between B and C which I don't want)
| A | B |
| A | |
| | C |
Here's how it looks: http://www.codeply.com/go/guzmu84ybo
Any ideas?