Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

LI Items not floating to the right on bootstrap nav

<nav class="navbar navbar-toggleable-sm navbar-inverse bg-inverse fixed-top"> <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <!-- TOGGLE BUTTON --> <a class="navbar-brand" href="#"><img src="images/logo1.png" class="logo"></a> <!-- NEED LOGO HERE AND PADDING AND BORDER RIGHT PROP -->

        <div class="collapse navbar-collapse" id="navbarsExampleDefault">
          <ul class="navbar-nav ">
            <li class="nav-item active">
              <a class="nav-link " href="#">Residential <span class="sr-only">(current)</span></a>
            </li>
            <li class="nav-item ">
              <a class="nav-link" href="#">Commercial</a>
            </li>
            <li class="nav-item">
              <a class="nav-link" href="#">Emergency</a>
            </li>

          </ul>
              </div>

Create workspace and share (or codepen). It's hard to know the problem only by HTML without the CSS library.