View Full Version : Positioning iframes


MELemmer22
06-17-2003, 01:12 AM
Could anyone help me out with positioning my iframes. The code I am using for my right frame which contains the iframes is:

<html>
<head>
<title>RIGHT</title>
</head>
<body bgcolor="#66ccff">
<body>
<basefont="tahoma" size="3" color="#000000">
<iframe src="inline.htm" name="inlineframe" width="220" height="235" style="border: 5 solid #ff33cc" style="position:absolute; left:40px; top:50px;"></iframe>
<iframe src="inline2.htm" name="inlineframe2" width="150" height="175" style="border: 5 solid #ff33cc" style="position:absolute; left:295px; top:75px;"</iframe>
</body>
<bgcolor="99CCFF">
</html>

the link to my site is www.geocities.com/melheart292 if that doesn't work try www.geocities.com/melheart292/index.htm

Please help! Thanks!

freakEgurl
06-17-2003, 02:42 AM
Your code seems to be working properly. I'm not too sure what you're trying to do, so I cant really help you too well.

MaGiCSuN
06-17-2003, 10:32 AM
Your code isn't exactly clean, so try this:

<html>
<head>
<title>RIGHT</title>
</head>
<body bgcolor="#66ccff">
<basefont="tahoma" size="3" color="#000000">
<iframe src="inline.htm" name="inlineframe" width="220" height="235" style="border: 5 solid #ff33cc" style="position:absolute; left:40px; top:50px;"></iframe>
<iframe src="inline2.htm" name="inlineframe2" width="150" height="175" style="border: 5 solid #ff33cc" style="position:absolute; left:295px; top:75px;"</iframe>
</body>
</html>

you had two <body> tags and i'm not sure what you want to do with this code: <bgcolor="99CCFF"> it was AFTER the </body> tag and it didn't had an # in the number code so i'm not sure wha tyou want to do with it.

Love,
Mirna

MELemmer22
06-18-2003, 01:36 AM
Thanks for your help I figured it all out.