I have downloaded the bootstrap dashboard sample and is looking for following behavior:
The two side sections are in same div, is it then possible to merge the main between the two sidebar sections on mobile? I guess push pull wont work here?
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-3 col-md-2 sidebar">
<div>
top
</div>
<div class="col-md-push-4">
bot
</div>
</div>
<div class="col-xs-12 col-xs-offset-0 col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<div>map</div>
</div>
</div>