Bootstrap : how to disable vertical scrollbar?

user1929393 picture user1929393 · Jul 18, 2013 · Viewed 85.9k times · Source

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.

Answer

Patsy Issa picture Patsy Issa · Jul 18, 2013

In your css add :

body {
  overflow-y:hidden;
}