I'm able to make scrollbars transparent in every latest browser version EXCEPT Mozilla Firefox. I'm using an inline frame for a css based type layout. I want it to just scroll without a scroll bar.

And on that topic, is there a place with a tutorial for customized scrolling? (like Flash but not). I've seen it around in html pages but no one ever answers how they do it. Locking their secrets and such.

This is the code I have in my html document and then css document.

HTML Code:
<iframe src="text.html">
</iframe>
HTML Code:
iframe {background: transparent;
float: left;
padding-left: 40px;
padding-top: 250px;
height: 350px;
width: 350px;
scrolling: auto;
border: 0px;
text-align: justify;
scrollbar-face-color: transparent !important;
scrollbar-highlight-color: transparent !important;
scrollbar-3dlight-color: transparent !important;
scrollbar-darkshadow-color: transparent !important;
scrollbar-shadow-color: transparent !important;
scrollbar-arrow-color:transparent !important;
scrollbar-track-color: transparent !important;
overflow-x: hidden;
overflow-y: scroll;}
As you can see, I've tried almost everything with that stupid css formatting crap. >< I hate it so much!

Much love and thanks for your help in advance.

Carley