View Full Version : I-frames Border Help Please


Larka
11-13-2005, 05:56 AM
Alrighty. I created an iframe but the border is still showing up when I don't want it to....I have the frameborder set to 0 as well as the border but it still shows up. This is the site: http://ca.geocities.com/saoirse_eas/imagemap.html

And this is the HTML I am using:

<iframe src=http://ca.geocities.com/saoirse_eas/frames/main.html name=iframe style="position:relative; width:585; height:400; left:-13; top:-35; frameborder="0"; border="0"; style="filter:Alpha(opacity=50)";></iframe>
</table>

<iframe src=http://ca.geocities.com/saoirse_eas/frames/menu.html name=iframe2 style="position:relative; width=93; height=353; left:-329; top:-473; frameborder="0"; border="0"; style="filter:Alpha(opacity=50);"></iframe>
</table>


Is there something conflicting there that I don't know about? I would really appreciate any help or suggestions. Thank.

pb&j
11-13-2005, 07:57 AM
you have some errors in your iframe codings. try this...

<iframe src="http://ca.geocities.com/saoirse_eas/frames/main.html" name="iframe" style="position:relative; width:585px; height:400px; left:-13px; top:-35px; filter:Alpha(opacity=50);" frameborder="0" border="0"></iframe>

<iframe src="http://ca.geocities.com/saoirse_eas/frames/menu.html" name="iframe2" style="position:relative; width:93px; height:353px; left:-329px; top:-473px; filter:Alpha(opacity=50);" frameborder="0" border="0"></iframe>

after that, you should look at your TABLE, TR, and TD coding. seems to be some missing and misplaced ones there.