I need to make a section of a NavBar of Bootstrap 3.0 always collapsed.
Actual sections of the navbar:
You have to override some css to make it stay collapsed
http://jsbin.com/UpeZazi/1/edit
In this example i made the "user login" button stay collapsed.
css:
@media (min-width: 768px) {
#login-btn {
display: block;
}
#sesion.collapse {
display: none !important;
}
}
html:
basically the same except i added the id login-btn
to your login user button element: