Boottrap DropDown Menu: Remove Scroll Bar

I am working on GitHub-Repo .

When the width of the window decreases, the nav bar collapses and goes into a dropdown menu with scroll bars (for width and height).

How do I remove these scrollbars?

I tried adding

.navbar-collapse{
max-height:auto;
max-widht:auto;
}

      

to my css file that handles the collapsing size.

+3


source to share


3 answers


Another solution adds the following to your CSS:



/* No scrolling for collapsed menu */

.navbar-collapse.in {
    overflow: hidden;
    max-height: none !important;
    height: auto !important;
}

      

+7


source


Change your css to

.navbar-collapse.in {
overflow: hidden;
}

      



Demo

+4


source


Try

.navbar-collapse {
    max-height:100%;
}

      

0


source







All Articles