Thanks, now I see what you mean!
This is a default setting in Bootstrap’s CSS for collapsed navbars – i.e. the max-height
declaration in the following rule in “bootstrap.css”:
.navbar-collapse {
max-height: 340px;
...
}
So you will need to use something like this additionally to overwrite it (just include it after “bootstrap.css”):
.navbar-collapse {
max-height: none;
}
Please let me know if you still have troubles.
Cheers!