Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dead zones when scrolling with mouse wheel

Status
Not open for further replies.

Nexusens

Programmer
Feb 6, 2007
22
0
0
CA
If the cursor is not over an element the scroll wheel does not function in IE I assume that it has somthing to do with a lack of formating for these area my general code structure goes like this
<body>
<div>
<p>content</p>
<p>content</p>
<p>content</p>
</div>
</body>
the sapces between the <p>'s seem to be the dead zones?

"Tsune ni ite, kyu ni awasu
 
Your content div does not even appear for me in IE6 (1024 x 768). You have overflow: hidden in your body selector, so no scrolling is allowed. When I remove that from the css, I find that the content is about a page below the 'bottom of the fold'.

(Overflow:hidden also likely explains your mouse wheel problem. Why scroll when the browser is specifically told not to?)

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
The overflow:hidden is only aplied to 2 of the 3 div's those 2 are not suposed to scroll the 3rd is overflow:auto
and I have not yet done a IE6 workaround

"Tsune ni ite, kyu ni awasu
 
I suppose your scrolling div in IE is only present where the elements are. It also looks terrible having two scrollbars. I suggest you think of another way to do what you're doing.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top