Click to See Complete Forum and Search --> : js scrollbar no thanks


venkusalo
06-17-2003, 09:31 PM
Greetings,

Does anyone know of a simple code that will remove the scrollbars?

I can activate features on launching a pop-up but is this possible withing the opening window
self.window.open or some such?

My current approach is using css
BODY { SCROLLBAR-FACE-COLOR: #F95414;
SCROLLBAR-ARROW-COLOR: #F95414;

etc. with the colour for all elements set at the bgcolor

thanks

|<usa!0

Khalid Ali
06-17-2003, 10:47 PM
if you use CSS property
overflow:hidden;

in the body tag then no scroll bars will appear,however then you will need another mechanism to display data that will be beyond the vewable area of the window.

venkusalo
06-17-2003, 11:01 PM
Yes, that seems to do the trick.

Also, surfing about I found <body scroll="no"> and this also seemed to work (in the few browsers I have to test with).

I wonder if going with all three - overflow, scroll="no" and the colour option will create any conflicts?

This is for a front page with the content constrained at 640 480 so scrolls are not req'd.

Thanks for your help.

|<usa!0