[PHP] HTML - iframe

2002-08-19 Thread David Buerer

Yes I know it's a PHP list, but I thought someone might have an idea on how
to fixt this problem anyway.

I have a page with (2) iframes.  While the source file for the iframes is
being loaded, the iframe shows up as a big white area, similar to a
textarea.  How do I make it so this doesn't happen?



RE: [PHP] HTML - iframe

2002-08-19 Thread Jay Blanchard

[snip]
Yes I know it's a PHP list, but I thought someone might have an idea on how
to fixt this problem anyway.

I have a page with (2) iframes.  While the source file for the iframes is
being loaded, the iframe shows up as a big white area, similar to a
textarea.  How do I make it so this doesn't happen?
[/snip]

You might want to set the background color of the page to something
different, other than that there is not much that you can do. IFRAMEs load
last in most browsers. You can apply CSS to the IFRAME
http://www.w3.org/TR/REC-html40/present/frames.html#h-16.5 , but I don't
know what else you could do.

HTH!

Jay

I haven’t lost my mind. It’s backed up on disk somewhere

***
* Texas PHP Developers Conf  Spring 2003  *
* T Bar M Resort  Conference Center  *
* New Braunfels, Texas*
* San Antonio Area PHP Developers Group   *
* Interested? Contact [EMAIL PROTECTED] *
***



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTML - iframe

2002-08-19 Thread Milan Reznicek

You may try,

to make the IFRAME invisible. I think it is done with this:

document.all.name.visibility = hidden;

And when the page is loaded then change it to

 document.all.name.visibility = visible;


Not sure if it will be working but you can try it.

Hi Milan
- Original Message -
From: David Buerer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, August 19, 2002 7:10 AM
Subject: [PHP] HTML - iframe


 Yes I know it's a PHP list, but I thought someone might have an idea on
how
 to fixt this problem anyway.

 I have a page with (2) iframes.  While the source file for the iframes is
 being loaded, the iframe shows up as a big white area, similar to a
 textarea.  How do I make it so this doesn't happen?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] HTML - iframe

2002-08-19 Thread Adam Williams

Have you tried putting the IFRAME in a table and setting the background
color of that table to the background of the rest of the page?

Adam

On Mon, 19 Aug 2002, David Buerer wrote:

 Yes I know it's a PHP list, but I thought someone might have an idea on how
 to fixt this problem anyway.

 I have a page with (2) iframes.  While the source file for the iframes is
 being loaded, the iframe shows up as a big white area, similar to a
 textarea.  How do I make it so this doesn't happen?



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php