I'm currently utilizing TBS and have configured my layout with three columns: a vertically stacked navigation on the left, main content in the center, and a Twitter feed on the right. My goal is to have the navigation display as stacked on larger screens, shift to horizontal on resolutions of 768px or below, and return to a stacked layout when the menu toggle is activated.
Here is the HTML code I am working with, using the standard Bootstrap stylesheet:
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span
class="icon-bar"></span><span class="icon-bar"></span></button>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav nav-tabs nav-stacked" style="font-weight: bold; font-size: 16px">
<li><a href="#Fencing">Home</a></li>
<li><a href="#Fencing">Beers and Ales</a></li>
<li><a href="#Fencing">Eating</a></li>
<li><a href="#Fencing">What's On</a></li>
<li><a href="#Fencing">Find Us</a></li>
<li><a href="#Fencing">Contact Us</a></li>
</ul>
</div>
</nav>