Website: http://www.animefushigi.com
Make your browser window skinny, note that there is no horizontal scroll bar, there should be one if your browser window is skinnier than 1024 px width.
<div id="master_wrapper"><div id="outer_wrapper">
..
</div></div>
#master_wrapper {
overflow:hidden;
margin:0 auto;
}
#outer_wrapper {
overflow:hidden;
margin-top:87px
}
The reason you don’t get a scrollbar is because you have
overflow: hiddenon the outer twodivs. Unfortunately, removing theoverflow: hiddens will cause problems. Instead, add:That will force a scrollbar.