Bootstrap : how to disable vertical scrollbar?

bootstrap-modal, css, html, twitter-bootstrap

Solution

In your css add :

body {
  overflow-y:hidden;
}

Problem

when my modal popup window opens, it adds a vertical scrollbar to the right of the browser window. How do i disable this? I think this is enabled when the modal window has a very large height value where it needs to scroll. i want to disable this as my form height does not exceed the window height.

Original source

Related problems