Reputation: 2096
I'm using Bootstrap to build my layout. When I show my modal, it makes my scroll bar disappear (blue rectangle on right side). I don't want to hide the scroll bar. How do I keep my scrollbar always visible?
Upvotes: 1
Views: 2748
Reputation: 477
Add class override-modal-open
to body
like:
<body class="override-modal-open">
If you want the modal scrollbar to be visible add to your CSS file:
.override-modal-open.modal-open .modal {
overflow-y: scroll;
}
If you want the body scrollbar to be visible add to your CSS file:
.override-modal-open {
overflow-y: scroll;
}
Upvotes: 3