Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iframe strange behaviour

Status
Not open for further replies.

robburne

Programmer
May 10, 2005
33
GB
Hi,

I am using amn iframe on this page:


The picture of the face is the iframe. I would like to add a copyright message below the frame. So I have drawn a layout table in dreamweaver and added the text.

However when I upload the html file to my sever the text is not there. It seems as if anything lower than the bottom of the iframe is ignored. This seems very strange.

Any ideas, thanks!

Rob.
 
[tt]<iframe>[/tt] tag needs to be closed. If it is not, browser assumes all information between the opening iframe tag and the closing tag only appears in browsers that cannot display the iframe. If you change your code to:
Code:
<td width="528" height="335" valign="top"><!-- #BeginEditable "main" --><iframe name=main src="home.htm" width="528" height="326" scrolling=auto frameborder=0></iframe><!-- #EndEditable --></td>
all should work.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top