I need tis markup – left and right sidebars have static width (300px for example), and middle container must be fluid.
UPD: Sidebars are snapped to brovser sides
How can i do this with twitter-bootstrap(current version)?
Now i have this markup, but result is not what i need
<div class="container-fluid">
<div class="row-fluid">
<div class="span3" style="width: 300px;">
<div class="well sidebar-nav">
</div>
</div>
<div class="span6">
</div>
<div class="span3" style="width: 300px;">
<div class="well sidebar-nav">
</div>
</div>
</div>
</div>
For this scenario, we shall avoid using span class, so hat we may take control of the situation.
We shall create our own sidebar for this scenario.
like so:
Put this in your css.
Put this thml markup in your document.
These codes shall output a page similar to this