Forum Moderators: open
You might want to remove your url before the MOD's do ;)
It's been a while since i worked with frames but i think you require to also include marginwidth="0" marginheight="0" which i see you have done (drat! i should really just go to bed) will have another look 8-)
HTH,
-gs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
<html>
<head>
<title>Your title here</title>
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head> <frameset cols="15%,*" [B]frameborder="0" border="0" framespacing="0"[/B]>
<frame name="menu" target="main" src="sidebar.html">
<frame name="main" src="main.html">
<noframes>
(noframes stuff here)
</noframes>
</frameset>
</html> Hope this helps!
<!-- this is my frames page -->
<html>
<head>
</head>
<frameset rows="117,*" frameborder="0" border="0" framespacing="0">
<frame name="top" src="top_frame_content.html" scrolling="no"
frameborder="0" border="0" marginheight="0" marginwidth="0" noresize>
<frameset cols="141,*" frameborder="0" border="0" framespacing="0">
<frame name="nav" src="left_frame_content.html" scrolling="no"
frameborder="0" border="0" marginheight="0" marginwidth="0" noresize >
<frame name="body" src="home.html" scrolling="auto"
frameborder="0" border="0" marginheight="0" marginwidth="0" noresize>
<noframes>
<body>
This page requires a frames enabled browser.
</body>
</noframes>
</frameset>
</frameset>
</html>
_____________________________________________________________________________
<!--
top_frame_content.html other than the obvious
missing <html> tags etc. contains only this table
-->
<TABLE border="0" cellpadding="0" cellspacing="0" summary=""
width="730">
<TR>
<TD height="39" width="183" ><IMG
src="images/new_stay_home_1x1.jpg"></TD>
<TD height="117" width="355" rowspan="2"><IMG
src="images/new_stay_home_1x2.jpg"></TD>
<TD height="117" width="192" rowspan="2"><IMG
src="images/new_stay_home_1x3.jpg"></TD>
</TR>
<TR>
<TD height="78" width="183" ><IMG
src="images/new_stay_home_2x1.jpg"></TD>
</TR>
</TABLE>
________________________________________________________________________________
<!-- left_frame_content (onmouse, onclick ommitted)
-->
<DIV>
<TABLE border="0" cellpadding="0" cellspacing="0" summary="left frame" bgcolor="#FFFFFF">
<TR>
<TD rowspan="5" width="25" height="180" valign="top"><IMG
src="images/new_stay_home_3x1.jpg" alt=""></TD>
</TR>
<TR>
<TD height="35">
<IMG name="new_stay_home7" src="images/new_stay_home_4x1.jpg"
width="116" height="35" border="0"></TD>
</TR>
<TR>
<TD height="33">
<IMG name="new_stay_home8" src="images/new_stay_home_5x1.jpg"
width="116" height="33" border="0"></TD>
</TR>
<TR>
<TD height="36">
<IMG name="new_stay_home9" src="images/new_stay_home_6x1.jpg"
width="116" height="36" border="0"></TD>
</TR>
<TR>
<TD height="36">
<IMG name="new_stay_home10" src="images/new_stay_home_7x1.jpg"
width="116" height="36" border="0"></TD>
</TR>
<TR>
<TD colspan="2" height="114"><IMG
src="images/new_stay_home_8x1.jpg" alt=""></TD>
</TR>
<TR>
<TD colspan="2" height="500" valign="top"><IMG
src="images/new_stay_home_9x1.jpg"></TD>
</TR>
</TABLE>
</DIV>
______________________________________________________________________________
<!-- body -->
<body bgcolor="#COCOCO" topmargin="0" leftmargin="0">
<TABLE cellspacing="0" cellpadding="0" border="0" bgcolor="#FFFFFF" height="560">
<TR valign="top">
<TD width="20"> </TD>
<TD width="280">
Some Text etc.
</TD>
<TD width="289">
<img src="images/free.jpg" align="right"></TD>
</TR>
</TABLE>
</body>
<body bgcolor="#COCOCO" topmargin="0" leftmargin="0">
topmargin and leftmargin are IE specific and more modern, so NN4 ignores them. You have specified bgcolor="#COCOCO", but not specified a background colour for the table cells. So the table cells will be white, and the background will be #COCOCO, giving the impression you see. To see what I mean open up the body file in NN, and see what it looks like without the frame context.
One other comment:
<noframes>
<body>
This page requires a frames enabled browser.
</body>
</noframes>
Shawn