Disabled Scroll Bar (grayed Out), Except In IE7
I have an overlay and to disable scrolling while the scroll bar is still visible (grayed out), I used: CSS html.noscroll { position: fixed; overflow-y: scroll; width: 1
Solution 1:
overflow:scroll makes IE displaying the scrollbar in all cases, even if it is not needed. That's what you want to do ?
IE6 & 7 are known to have scrolls issues when coupled with 'position:relative' or 'width:100%' and margins.
Try with
width: 80%;
If scrolls are correctly greyed, you probably have a margin/padding issue. If it changed nothing, try changing the position.
Post a Comment for "Disabled Scroll Bar (grayed Out), Except In IE7"