Page 1 of 1

iFrames Get Squeezed, Sidebar gone

Posted: Sun Oct 26, 2008 1:10 pm
by johnywhy
my iframe is getting squeezed on this page.
and the rest of the page, including sidebar and footer, are gone.
http://scvdotnet.org/index.php?/archives/5-Upload.html

this is what my iframe code looks like:

Code: Select all

<iframe src="http://screencast.scvdotnet.org/upload_file.php" allowtransparency="true" frameborder="0" height="600" scrolling="no" />
seems this happens, no matter what attributes i try.

Re: iFrames Get Squeezed, Sidebar gone

Posted: Sun Oct 26, 2008 1:37 pm
by garvinhicking
Hi!

<iframe /> is not supported by all browsers properly. Try <iframe></iframe> instead.
Also you must add a "width" attribute to the iframe.

Regards,
Garvin

thanks!

Posted: Sun Oct 26, 2008 1:52 pm
by johnywhy
thanks