I'm in the process of updating my company's website from Bootstrap 2 to Bootstrap 3 and have what I assume is a relatively simply issue to resolve; the menu items are not clearing the logo in the navbar. Pulling the menu items to the right does not seem to resolve the issue, as when the menu collapses the items are still to the right.
Here is the link to the site in development.
Here is the code for the nav:
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-static-top wrapper" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" 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>
<a class="navbar-brand" href="index.html"><img src="img/tsp-logo.png" class="logo img-responsive" alt="Third Sector Publishing" /></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html#about"><i class="fa fa-question-circle"></i> About</a></li>
<li class="active"><a href="#"><i class="fa fa-users"></i> Team</a></li>
<li class="scroll"><a href="#contact"><i class="fa fa-envelope-o"></i> Contact</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-book"></i> Products <b class="caret"></b></a>
<ul class="dropdown-menu">
<li class="scroll"><a href="#cww">Canadian Who's Who</a></li>
<li class="scroll"><a href="#cdg">Canadian Donor's Guide</a></li>
<li class="scroll"><a href="#cc">CharityCAN</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
– Christina Dec 16 '13 at 15:56