Looking to utilize bootstrap for creating a top navigation layout and encountering an issue with the default left alignment. How can I make it span the full width at the top?
Current https://jsfiddle.net/v2notb5n/
<nav class="navbar">
<div class="fluid-container">
<ul class="nav navbar-nav navbar-inverse">
<li class="nav_page active"><a href="#" class="nav_txt"> Home</a> </li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#" class="nav_txt"> Team <span class="caret"></span></a></li>
<ul class="dropdown-menu">
<li><a href="#">National</a></li>
<li><a href="#">Geo</a></li>
<li><a href="#">Team Pictures</a></li>
</ul>
<li> <a href="#" class="nav_txt">About us</a> <li>
</ul>
</div>
</nav>
Expected outcome: https://i.sstatic.net/7h8th.jpg
I attempted a similar solution I found here Bootstrap navbar justify / span menu items occupying full width
However, that approach didn't solve my issue.
Updated with suggestions and answer from: https://jsfiddle.net/uahwra75/1/