Click to See Complete Forum and Search --> : Removing Scroll bars in MOZILLA


serAph1m
09-23-2003, 04:50 PM
Ive tried:

<body scroll="no" style="overflow: hidden;">

and it doesnt work in Mozilla or Opera, but it works in IE.



any idea on how to remove scroll bars completely in mozilla?

PeOfEo
09-23-2003, 05:18 PM
<body style="overflow-x:hidden; overflow-y:hidden;"> try that.

pyro
09-23-2003, 05:35 PM
overflow-x and overflow-y are M$ proprietary tags (though it looks like they might be in CSS3, for what good that does now... :D)

PeOfEo
09-23-2003, 05:36 PM
What I dont get is how come overflow isnt working in mozilla. Maybe you have something overriding the script. The scrolling="no" is probably whats making those go away in ie, but that is not a valid html 4.01 strict attribute (or loose to my knowledge)

Khalid Ali
09-23-2003, 08:12 PM
overflow:hidden

should work.....:D

serAph1m
09-24-2003, 10:44 AM
worked like a charm! Thanks!
:D :D :D