iFrame doesn't display

User Help for Mozilla Firefox
Post Reply
v4
Guest

iFrame doesn't display

Post by v4 »

I cannot view the content of any iFrames on my website using Firebird 0.7 because I have the height of the iFrame set to 100%. If I set the height to an actual number rather than a percentage, it works fine. How can I fix this so I can see the content in my iFrame? Site = http://www.v4images.com
v4
Guest

Post by v4 »

Is there no way? Am I just going to have to start viewing it with IE???
User avatar
Pike
Posts: 2293
Joined: August 10th, 2003, 12:12 pm
Location: UK
Contact:

Post by Pike »

Give the body and html elements a height as well would be my guess, but I can't find any pages on your site that use an iframe so I don't know.
User avatar
laszlo
Posts: 5225
Joined: November 4th, 2002, 6:13 pm
Location: .de
Contact:

Post by laszlo »

The iframe is in the rightmost column ;)

The paragraph in here seems useless to me:

Code: Select all

<td colspan="2" valign="top"><p><img ... ><br>
<IFRAME ...></IFRAME></p>

Two working alternatives:

Code: Select all

<td colspan="2" valign="top"><img ... ><br>
<IFRAME ...></IFRAME>
or:

Code: Select all

<td colspan="2" valign="top"><p style="height:100%"><img ... ><br>
<IFRAME ...></IFRAME></p>
dandan
Posts: 3
Joined: December 28th, 2003, 6:23 pm

Post by dandan »

I have use iframe on my application. Its working fine in both ie and mozilla :)
User avatar
Pike
Posts: 2293
Joined: August 10th, 2003, 12:12 pm
Location: UK
Contact:

Post by Pike »

Oops, must be blind :-)
v4
Guest

Post by v4 »

removing the <p> and </p> tags solved the problem, thank very much laszlo :)
Guest
Guest

Post by Guest »

*thanks
Post Reply