How to make transparent iframesTo make transparent iframes, just use this allowtransparency="true" and it should work, but transparency is usually only allowed on IE mostly, so you might have to test your pages on different browsers. Also, you can make transparent scrollbars by using this:
<iframe name="framename" src="file"
width="width" height="height" marginwidth="margin"
marginheight="margin" frameborder="bordersize"
scrolling="auto" style="filter: chroma(color=color or hex code)"
allowtransparency="true">
|