View Full Version : scrolling


ecnahc_tsal
08-24-2004, 02:01 AM
how do u eliminate scrolling and scrollbars from a non-frames page?

stargrl329
08-24-2004, 02:10 AM
Put this in your head tag:

<style type="text/css">
body{
overflow-x: hidden;
overflow-y: hidden;
}
</style>

The user can still scroll if they have a mouse wheel or if they click and drag, but the scrollbars will not appear.

kittycat
08-24-2004, 02:11 AM
Add one of these to your BODY tag
All scrollbars:
style="overflow: hidden"
Vertical:
style="overflow-y: hidden"
Horizontal:
style="overflow-x: hidden"
Remember that if you use one of these, and the person viewing your page has a smaller resolution, they will not be able to see all your content. It's best to resize your page appropriately.