Reputation: 69
https://www.bootply.com/1qzmF59lc1
When you click the navbar right button,
the scroll bar is shown and disappears.
When I add this
overflow-y: visible;
I see afterimages.
I do not want to see the scrollbars, and the afterimages, too.
How do I fix it?
Upvotes: 0
Views: 492
Reputation: 255
Add this css code to your stylesheet Scrollbar will remove using this code
.navbar-collapse.collapsing{overflow:hidden;}
Upvotes: 1