Looking to use Bootstrap 3 for a particular layout but im not quite sure the best way to acheive this.
I want a three column layout something along the lines of
<div class="container">
<div class="row">
<div class="col-md-2">Left Hand Panel</div>
<div class="col-md-8">Main Panel</div>
<div class="col-md-2">Right Panel</div>
</div>
</div>
I want the ability to be able to collapse the side panels and have the main panel adjust to take the available room.
I am unsure how to implement this sort of behvaiour with bootstrap, i want some sort of small splitter between the panels which will allow the user to toggle the panels state.
I can't see how to implement this with the grid system