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 th

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 bu

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 . How do I make it so this doesn't happen?