Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Second scrollbar

Home Forums Older releases 0.9.x Second scrollbar Re: Second scrollbar

#1649
admin
Keymaster

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!