I was trying one of the default bars that are shown on the official Bootstrap page but the name is inverted with respect to the toggler button and it is not quite good at all.
This is how it looks (notice that it is on the screen maximized and the button is still visible):
It should be like this:
and when it's maximized:
The code has its own CSS but has no modification. I do not know if I am linking any of the files wrong or I need to add something because I try it on any page and it works. I leave the code:
<div class="text-primary container header">
<h1>Titulo</h1>
<p>Lorem ipsum dolor sit amet lorem</p>
</div>
<!-- Esta es la barra que estoy tratando de implementar-->
<nav class="navbar navbar-toggleable-md navbar-light bg-faded">
<button class="navbar-toggler navbar-toggler-right" type="button" data-
toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-
expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">Navbar</a>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)
</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li>
</ul>
</div>
</nav>
link to the bar: Bootstrap Bar