I couldn't find an answer to this elsewhere...
In bootstrap 2.x you could use the js tabs functionality and make them show on the left with:
<div class="tabbable tabs-left"> <-- TABS-LEFT HERE!!!
<ul class="nav nav-tabs" id="myTab">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#profile">Profile</a></li>
<li><a href="#messages">Messages</a></li>
<li><a href="#settings">Settings</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="home">...</div>
<div class="tab-pane" id="profile">...</div>
<div class="tab-pane" id="messages">...</div>
<div class="tab-pane" id="settings">...</div>
</div>
</div>
But now that functionality doesn't seem to carry over in bootstrap 3.0 and I don't see any documentation for it on the bootstrap website. Does anyone know if this was removed? It's hard to believe it would be...
Thank you for your help!