Skip to content Skip to sidebar Skip to footer

Why Is My Bootstrap Navbar Brand Not Inline

I'm trying to figure out why my navbar brand is not in line with the rest of the navbar content. I already tried the solutions in this post Why is my bootstrap navbar not displain

Solution 1:

Don't close the div before the ul. Include the ul with class .nav .navbar-nav like this

<divclass="collapse navbar-collapse"><ulclass="nav navbar-nav"><liclass="active"><ahref="#">get     
       started</a></li><li><ahref="#">tell us</a></li><li><ahref="#">about this project</a></li></ul></div>

Solution 2:

I managed to fix it myself. I closed the div of <div class="collapse navbar-collapse"> before the ul list. I'm realy new to coding but I hope this can help someone

Post a Comment for "Why Is My Bootstrap Navbar Brand Not Inline"