View Full Version : Transparent Iframes : The soultion


laerke
03-14-2003, 12:26 PM
I've seen many having trouble with displaying transparent iframes.

In many cases the correct html tags where given, except the right place to write them.

Here's the solution that works :

In the page that contains the iframe you should put :

<IFRAME NAME="Frame1" SRC="iframe_content.htm" ALLOWTRANSPARENCY="true">

In the iframe content source file (iframe_content.htm) put :

<BODY STYLE="background-color:transparent">

For all iframe tags go to :

http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/overview/inlinefloatingframes.asp

Hope this helps some ppl :)