css - Bootstrap DropDown Menu: Remove Scrollbar -
i'm working in following github-repo.
when window width decreases,the navbar collapses , changes dropdown menu scrollbars (for width , heigth).
how can remove scrollbars?
i tried adding
.navbar-collapse{ max-height:auto; max-widht:auto; } to css file handles collapsing size.
another solution adding following css:
/* no scrolling collapsed menu */ .navbar-collapse.in { overflow: hidden; max-height: none !important; height: auto !important; }
Comments
Post a Comment