View Full Version : IFrame Layout Help


ocarinist
05-09-2003, 03:19 AM
Hi,
I'm currently making a website with an IFrame Layout and I erm...need a little help with the HTML.

I want to have an image, and on top of a part of the image, the
IFRAME, transparent. I know this is possible as I have seen it on many sites but I haven't been able to figure out what exactly does it in the source code and I dare not copy it!

Thank you very much!

Lemon Squash
05-09-2003, 03:30 AM
Eh? Do you just want the code for a transparent Iframe?

ocarinist
05-09-2003, 04:42 AM
Nope, I know that already + the positioning code but I need to know how to make it borderless, I tried border: 0 in the style="" in the IFRAME tag with no apparent luck. Sorry I didn't make it clearer...

starlet
05-09-2003, 02:23 PM
add frameborder="0" border="0" in the <iframe...> tag (not in the style part.) eg:

<iframe src="iframe.html" name="main" width="342" height="362" frameborder="0" border="0" scrolling="auto" style="position: absolute; top: 48px; width: 342px; left: 38px; height:348;"></iframe>