View Full Version : How do you get rid of scrollbars?


missamandaparker
08-24-2005, 08:38 AM
Hi There! I have a site and I don't need the x scrollbar, now how do i get rid of it using html? I used to know this but I totally forget! Please Help!, love from Amanda

iTom
08-24-2005, 12:05 PM
I'm not sure it's possible, unless you make your page fit on the screen 100%. Sorry I can't help more.

Sheila
08-24-2005, 12:09 PM
Put this between the <head> </head> tags...

<style type="text/css">
html,body {
overflow: hidden;
}
</style>

neouser456
08-24-2005, 04:18 PM
Wow, I never new you can get rid of it. :)