Forum Moderators: open
hint:look for scrollbars=no
in the HTML:
<body scroll="no">
or:
<html style="overflow: auto;">
or in an embedded/external stylesheet..
html {
overflow: auto;
}
this method only works as long as the content does actually fit into the page you are viewing which maybe isn't a bad thing because if it doesn't the scrollbars will automatically appear..
also this only actually hides them in IE the other browsers will not display them unless required, by default..
Suzy