My html page is not scrolling in browsers
css, html, twitter-bootstrap, twitter-bootstrap-3
Solution
remove `overflow: hidden;` from `body` in the bootstrap-theme.css file.
Problem
The page on my website is not scrolling. If there are more content than screen can fit you can not actually see it because scroll is not working. I'm not and CSS guru and I don't know if the problem is actually with CSS or HTML. I've spend some time trying to understand the problem but i'm not a CSS guru so I hope someone can help me. The page is using tweeter-bootstrap and custom theme for it (which i did not write). When I don't include theme CSS file scrolling is working fine. Part of my theme CSS file: ``` body { color: #000; font-family: 'Play', sans-serif; font-size: 16px; line-height: 25px; background: #e0dbcd url('../images/bg.jpg'); letter-spacing:0.2px; overflow: hidden; } ```