Please help me on changing when my nav-bar be collapsed or if there is any method to make it responsive like getting in small size!
that\'s my code:
The collapse can prove troublesome if you have a wide menu bar. You need to edit the media queries inside the bootstrap.css file. This can be found
@media (min-width: XXpx) {
.navbar-header {
float: left;
}
}
You should change this and some other under this such as .collapse to perfect it's responsiveness to your website. Also, your HTML is fine, but this doesn't really affect it.