Log in

View Full Version : Nothing shows below iframe



nitish
08-03-2006, 08:33 PM
Hi all

Just registered on this forum and this is my first post.

Description of my page:

http://www.nitishbelut.com/indymoviemakers/tests/index_test.php

My page here consists of a table, split into two cols and the right column has an iframe (just below "News").

My problem:

I tried inserting another table/paragraphs below the table but whatever i put there doesn't get displayed.However, when i remove the iframe, then it IS displayed.I need to place a footer there (using the php code require("footer.html"); )

Can anyone tell me how to solve this problem?

Thanks

boogyman
08-03-2006, 08:40 PM
your iframe height is covering up whatever you want to put below it... put a couple breaks in after your iframe or use some css to clear your iframe and you will be able to see your caption.

Hope this helps

nitish
08-04-2006, 07:32 AM
Thanks for the reply

I tried changing the height of the iframe, and even tried excluding the height attribute...but still the problem persists.

jscheuer1
08-04-2006, 08:22 AM
Close your iframe:


<iframe id="news" src="../phpnews/news.php"></iframe>

nitish
08-04-2006, 09:01 AM
Thanks!

It works now :)