In FF for some reason, the page in the iframe (home.html) is given the default background color of the top page. If you were to view it alone in FF it would appear all white as well (as long as your browser colors are set to the defaults, which they probably are). Conversely, in IE, if I place my mouse inside the white area and hold down the left button while I drag the mouse across it, I can see the text as it becomes highlighted. Simply setting the background color of home.html to the same color as the top page should solve this. Make home.html's body tag look like this (additions red):
Code:
<body bgcolor="#1C4464" text="white" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="white" alink="white" vlink="white">
The default background (if not configured by the user) is usually white, and you've set all your text in the style section (color property) to #FFFFFF, which is also white.
This is a common problem that can occur whenever you do not explicitly set both a background and foreground color, which you always should do if you specify either. Even if the page looks OK to you, since someone may have their default background set to your specified foreground or the other way around, you are just asking for trouble if you do not set both when setting either one.
Bookmarks