Is there a way to turn the scrollbar on the browser off when a user arrives at your site - without opening the site in a new window? I have seen it done but cannot figure out from the code how it is made to do this.
you can also set this property for individual scrollbars like this
body{overflow-x:hidden; overflow-y:visible;}
however be careful when doing this to specift both the x and y scrollbars or ie5 will get confused.
There is a third property for scollbars which is auto
body{overflow:auto;}
this will display a scrollbar only when neccessary. However this will break netscape6 when used on the body tag so it is inadvisable to use it like this at the moment.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.