I'm currently utilizing the bootstrap scaffolding/grid system in the following manner:
<div class="row-fluid">
<div id="insta-shop-filter" class="span2 visible-desktop">
</div>
<div id="insta-shop-grid" class="span10">
</div>
<div>
One thing I noticed is that by adding 'visible-desktop' to insta-shop-filter
, it disappears on non-desktop screens. However, my goal is for insta-shop-grid
to span the full width when insta-shop-filter
is hidden, essentially becoming a span12
. Is there a way to achieve this without relying on javascript/jQuery and monitoring window events?