View Full Version : How do I remove a Scrollbar?
SpydeR
10-08-2002, 05:19 PM
I am trying to figure out for to remove the scrollbar on my page and its not in frames so It wont let me use noresize and and scrolling=no. I cant seem to find out how to do this because I dont know of many people that would want to remove it in the first place unless you were making a pop up window.
adios
10-08-2002, 05:25 PM
<style type="text/css">
body {
overflow: hidden;
}
</style>
Might be able to do this dynamically too:
<script type="text/javascript" language="javascript">
document.body.style.overflow = 'hidden';
</script>
Let me test that...:D
OK - works!
SpydeR
10-08-2002, 05:27 PM
Allright that worked great! i knew it had to be something dumb and easy!
Revelle
10-08-2002, 08:12 PM
And a double thanks too- to both of you! Even tho I didn't start or ask this, running across it helped one of my pages with frames, now it look purdy. :D
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.