I am using bootstrap and Parse framework to build a small webapp. But those Bootstrap modals keep adding padding-right to body after closed. How to solve this?
I tri
Just open bootstrap.min.css
Find this line (default)
.modal-open{overflow:hidden;}
and change it as
.modal-open{overflow:auto;padding-right:0 !important;}
It will work for every modal of the site. You can do overflow:auto; if you want to keep scrollbar as it is while opening modal dialog.