Reputation: 7939
Sounds like a UX no-no.. but go with it.
I'm using jQuery scrollTo to move the page around to absolutely positioned div sections. I'd like to remove the scrollbars so that the user can't move from section to section without using the navigation (which is always present).
Possible? overflow:hidden;
was my first thought, but it doesn't even work theoretically.
Thanks all!
Upvotes: 0
Views: 840
Reputation: 7939
Got it.
html{overflow:hidden;}
'cause they're not in the body!
Upvotes: 1