I have been reading alot about the Firefox and Iframe issue but really have seen no fix for it. I am sure its a simply tweak in my html but i cant seem to find the fix. I am new to html, I am just using frontpage and everything looks ok in there. below is my index page I set the background color to black, in Firefox the black is in the iframe as well as the background. And when I set a background picture it does the same thing. I have my page centered so the outsides should be black and the Iframe should be white.. Thanks for any help..
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META content="Microsoft FrontPage 6.0" name=GENERATOR>
<META content=FrontPage.Editor.Document name=ProgId>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<SCRIPT language=JavaScript>
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;
//-->
</SCRIPT>
<style type="text/css">
<!--
body {
background-color: #000000;
}
a:hover {
color: #EB5729;
}
a:link {
color: #EB5729;
}
a:visited {
color: #EB5729;
}
a:active {
color: #EB5729;
}
.style4 {font-size: 10px}
-->
</style></HEAD>
<BODY leftMargin=0 topMargin=0>
<DIV align=center>
<CENTER>
<TABLE id=AutoNumber1 style="BORDER-COLLAPSE: collapse" cellPadding=0
border=0 height="0">
<TBODY>
<TR>
<TD align=left width=1
rowSpan=3> </TD>
<TD width=800
bgColor=#ffffff>
<img border="0" src="tq_banner.jpg" width="800" height="200"></TD>
</TR>
<TR>
<table width="800" border="0" bgcolor="#000000">
<tr>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="home.html">Home</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4">
<a target="main" href="gallery.html"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
Gallery</font></a></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="specs.html">Specs</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="news.html">News</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="dealers.html">Dealers</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="accessories.html">Accessories</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="setups.html">Setups</a></font></span></th>
<th width="100" bgcolor="#000000" scope="col"><span class="style4"><font color="#EB5729" face="Verdana, Arial, Helvetica, sans-serif">
<a target="main" href="contact.html">Contact</a></font></span></th>
</tr>
</table></TD>
</TR>
<TR>
<TD height="25" bgColor=#ffffff>
<DIV align=center>
<CENTER>
<iframe name="main" src="home.html" width="798" height="561" scrolling="no"> Your browser does not support inline frames or is currently configured not to display inline frames. </iframe>
</CENTER></DIV></TD></TR>
</TBODY></TABLE>
</CENTER></DIV>
</BODY></HTML>
THanks again..