suttongoat
New Member
What's the best way to fix the width and height of left tabs in twitter bootstrap to use it as a fixed size navigation bar? Questions are better illustrated in the code below.\[code\] <div class="tabbable tabs-left"> <ul class="nav nav-tabs"> <li class="nav-header">Questions</li> <li class=""><a data-toggle="tab" href="http://stackoverflow.com/questions/11531928/#lA">------ Question 1 -------</a></li> <li class="active"><a data-toggle="tab" href="http://stackoverflow.com/questions/11531928/#lB">------ Question 2 ------</a></li> </ul> <div class="tab-content"> <div id="lA" class="tab-pane"> <p>How do I fix the width of this section as to avoid using the --------</p> </div> <div id="lB" class="tab-pane active"> <p>Can I fix the height as well?</p> </div> </div> </div>\[/code\]