Frame problem big help needed

liunx

Guest
hi there<br />
i made a site, 3 frames, upper frame, center frame, bottom frame.<br />
<br />
there may be NO border between the upper frame and the center frame, i have set every border to 0, i have centered to top, whenever possible (in dreamweaver)...<br />
<br />
but when i preview my page, there still a space between the picture that is in the upperframe, and the table that is in the center frame....<br />
<br />
just can't get it straight...<!--content-->Hi there lardenoye,<br />
<br />
So that the resident gurus here may better assist you...<br />
could you give them some code to look at or/and...<br />
the url of your malfunctioning site.<br />
<br />
coothead<!--content-->well, It'd be WAY easier to find the problem if you could show us the code. BUT, even without that, try one of these:<br />
1. There is also a margin setting for the frames, which defines how far the content must be from the edge of the frame. Make sure the margin height is set to 0.<br />
2. You said that you aligned to top whenever possible. Make sure that you did not do this in the top frame, as it would probably help to align to bottom in the top frame.<br />
3. It looks like your top frame is an image. If so, make sure that the frame height is set to the EXACT height of the image.<!--content-->hi<br />
well thanx for trying to help me...<br />
<br />
this is my coding for the MAIN frames page (3 frames)<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<br />
<frameset rows="86,461,100%" cols="*"framespacing="0" frameborder="NO" border="0"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"m12_logo.htm" name="topFrame" scrolling="no" noresize ><br />
<frame src=http://www.htmlforums.com/archive/index.php/"content.htm" name="mainFrame"scrolling="no"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"navigation.htm" name="bottomFrame" scrolling="NO" noresize><br />
</frameset><br />
<noframes><body><br />
<br />
</body></noframes><br />
</html><br />
<br />
<br />
<br />
this is the frames page which gets opened into the middle frame (content)<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<br />
<frameset rows="461" cols="527,*" framespacing="0" frameborder="NO" border="0"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"info_pic.htm" name="leftFrame" scrolling="no"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"info_text.htm" name="mainFrame" scrolling="yes"><br />
</frameset><br />
<noframes><body><br />
<br />
</body></noframes><br />
</html><br />
<br />
<br />
the page itself (left side, info_pic.htm)<br />
:<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<STYLE><br />
<!--<br />
body {<br />
SCROLLBAR-BASE-COLOR: #FFFFFF;<br />
SCROLLBAR-FACE-COLOR: #FFFFFF;<br />
SCROLLBAR-SHADOW-COLOR: #FFFFFF;<br />
SCROLLBAR-3DLIGHT-COLOR: #FFFFFF;<br />
SCROLLBAR-TRACK-COLOR: #FFFFFF;<br />
SCROLLBAR-DARKSHADOW-COLOR: #FFFFFF;<br />
}<br />
--><br />
</STYLE><br />
<br />
<body><br />
<TABLE WIDTH=500 BORDER=0 align="right" CELLPADDING=0 CELLSPACING=0><br />
<TR><br />
<TD><br />
<IMG SRC=http://www.htmlforums.com/archive/index.php/"images/infopage-full_01.jpg" WIDTH=500 HEIGHT=113 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD><br />
<IMG SRC=http://www.htmlforums.com/archive/index.php/"images/infopage-full_02.jpg" WIDTH=500 HEIGHT=114 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD><br />
<IMG SRC=http://www.htmlforums.com/archive/index.php/"images/infopage-full_03.jpg" WIDTH=500 HEIGHT=114 ALT=""></TD><br />
</TR><br />
<TR><br />
<TD><br />
<IMG SRC=http://www.htmlforums.com/archive/index.php/"images/infopage-full_04.jpg" WIDTH=500 HEIGHT=120 ALT=""></TD><br />
</TR><br />
</TABLE><br />
</body><br />
</html><br />
<br />
<br />
i can't see any special coding where the margins /space between the frames can be adjusted....<br />
<br />
Greetz<br />
hope somebody can help me... :O(<br />
greetz<br />
melvin<!--content-->What about the <br />
<body><br />
in your content pages......<br />
change it to:<br />
<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" rightmargin="0" bottommargin="0"><br />
<br />
:rocker:<!--content-->
 
Back
Top