Currently, I am diving deep into the world of Twitter Bootstrap to create my team's website. However, I have run into a roadblock that is hindering my progress. Here is the code snippet:
<div class="container">
<ul class="nav nav-tabs">
<li class="active"><a href="index.html">Home</a></li>
<li class="divider-vertical"></li>
<li><a href="members.html">Members</a></li>
<li class="divider-vertical"></li>
<li><a href="videos.html">Videos</a></li>
<li class="divider-vertical"></li>
<li><a href="forum.html">Forum</a></li>
<li class="divider-vertical"></li>
</ul>
<div class="row">
<div class="span9">
Column 1
</div>
<div class="span3">
Column2
</div>
</div>
</div>
I am trying to extend the navbar border around the entire container using the basic version of Twitter Bootstrap, but I'm unsure how to achieve this. If anyone has insight or suggestions on how to accomplish this, please let me know. You can view the current state here, and here is what I am aiming for: link.
Thank you, Psyko460