Forum Moderators: open

Message Too Old, No Replies

hide/disable scroll bar in Netscape

         

rhodopsin

9:30 pm on Sep 29, 2004 (gmt 0)

10+ Year Member



Does anyone know how to

) hide or
) disable

the scroll bar? I know how to do this with internet explorer. But does anyone know how to do it with other browsers eg. netscape.

webdude

12:05 pm on Sep 30, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I think you can only do this if you pop in a new window. To hide the scroll in the parent window is not possible as far as I know. Would be a neat trick though.

dmjw01

12:18 pm on Sep 30, 2004 (gmt 0)

10+ Year Member



Would be a neat trick though.

And here is that neat trick... :-)

You need just a little bit of CSS to do this.

"overflow: hidden" applied to the "body" will do the trick (or at least, it works in Firefox)...

<body style="overflow: hidden">
....
</body>

This seems to do what you want and it works in both FF and IE, but the user will then have no way to scroll your page at all.

rhodopsin

10:17 am on Oct 1, 2004 (gmt 0)

10+ Year Member



thanks mate. Does anyone know whether that last little trick works in netscape as well?

webdude

11:28 am on Oct 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hey dmjw01,

Ya learn something new every day.

I'm going to try this out.

rhodopsin

11:24 am on Oct 3, 2004 (gmt 0)

10+ Year Member



solution for netscape anyone?

tedster

2:55 pm on Oct 3, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



What works in FireFox should work in Netscape 7 - and I just verified that it does. If you are asking about Netscape 4, I think you're out of luck.