View Full Version : Positioning I-frames?


julieonline
07-20-2003, 11:48 PM
arial I know the basics about i-frames and want to learn how to position them onto a background image but I don't know how to. Could someone please help me?

kittycat
07-21-2003, 12:29 AM
http://www.lissaexplains.com/css2.shtml#position

The code there's for images, but it works for anything.

Nephilim
07-21-2003, 04:34 PM
here's how i did it on my layout:

<div style="position:absolute;left:25;top:74;">

<iframe src="yourpage.html" allowtransparency="true" frameborder="0" name="yourpage" width="252" height="234">Your browser does not support iframes. please upgrade.</iframe>

</div>

just change the stuff in bold. the top part is where to put the iframe, kinda like moving it on pagebuilder. the width and height are how big you want to the frame to be. and depending on how your page is, take out the allowtranparency code.

MaGiCSuN
07-21-2003, 04:38 PM
you can also use:

<iframe src="yourpage.html" allowtransparency="true" frameborder="0" name="yourpage" width="252" height="234" style="position:absolute;left:25;top:74;">Your browser does not support iframes. please upgrade.</iframe>

argh take out the space between style=" and position

Love,
Mirna