canfas
canfas

Reputation: 69

Boostrap collapsing scrollbar hide

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? enter image description here

Upvotes: 0

Views: 492

Answers (1)

Awesome Designer
Awesome Designer

Reputation: 255

Add this css code to your stylesheet Scrollbar will remove using this code

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

Upvotes: 1

Related Questions