Getting rid of scroll bar

liunx

Guest
Can anyone tell me the code of how to get rid of the gray scroll bar that is always on the right. I used to have it but can not find it any longer. Thanks.<!--content-->Try in the head:<br />
<br />
<STYLE TYPE="text/css"> <br />
body {overflow: hidden;}<br />
</STYLE><!--content-->Thank you very much! :)<!--content--><STYLE TYPE="text/css"> <br />
body {overflow: hidden;}<br />
</STYLE><br />
<br />
<br />
I wish it was that easy to loose weight !!! :D :D :D :D :D :D :D :D<!--content-->I usually just turn the scrollbar color the complete color of the background.<!--content-->You can also turn it off by adding scroll="no" to the body tag.<br />
ie <body scroll="no"><br />
I prefer this method because it's slightly quicker and simpler.<!--content-->I also do <body scroll="auto"> Oh, and you can't do <body bgcolor="#000000" scroll="auto"> because it won't work. You need to do this, <body bgcolor="#000000" body scroll="auto"> for it to work.<!--content-->
 
Back
Top