How about the below solution? It worked for me. Try this:
.modal .modal-body {
max-height: 420px;
overflow-y: auto;
}
Details:
- remove
overflow-y: auto;oroverflow: auto;from .modal class (important) - remove
max-height: 400px;from.modalclass (important) - Add
max-height: 400px;to .modal .modal-body (or what ever, can be420pxor less, but would not go more than450px) - Add
overflow-y: auto;to.modal .modal-body
Done, only body will scroll.