When the xs layout displays as expected, how can I move the sidebar up to the navigation in order to eliminate the gap between them in the lg layout?
<div class="row">
<div class="col-xs-12 col-lg-3 col-lg-push-9">
navigation
</div>
<div class="col-xs-12 col-lg-9 col-lg-pull-3">
content
</div>
<div class="col-xs-12 col-lg-3 col-lg-offset-9">
sidebar
</div>
</div>
XS Layout:
navigation
---
content
---
sidebar
LG Layout:
content | navigation
| sidebar
Fiddle: