View Full Version : bottom frames..


Nessa Lúinwë
07-01-2003, 11:50 PM
how do you make a bottom frame? i tried putting

frame src="bottom.html" name="bottom"

but it didnt work! Heres my code, i use angelfire by the way,if thats any use.



<border="0">
<html>
<head>
</head>
<frameset rows=20%,80% border=0 frameborder=0 framespacing=0>
<frame src="frames.html" name="top">
<frame src="main.html" name="bottom">
<frame src="bottom.html" name="bottom">
</frameset>
<body>
</body>
</html>

amicus
07-02-2003, 12:02 AM
in your frameset you specified 2 rows but you made 3 frames and you had 'border' above the 'html' tag.

<html>
<head>
</head>

<frameset rows="20%,80%" frameborder="0" framespacing="0" border="0">
<frame src="body.html" name="top">
<frame src="left.html" name="bottom">
</frameset>

<noframes>
<body>
Your Browser does not support frames
</body>
</noframes>
</html>

pb&j
07-02-2003, 04:54 AM
or if you are trying to have 3 frames...

<html>
<head>
</head>

<frameset rows="15%,70%,15%" frameborder="0" framespacing="0" border="0">
<frame src="body.html" name="top">
<frame src="middle.html" name="middle">
<frame src="bottom.html" name="bottom">
</frameset>

<noframes>
<body>
Your Browser does not support frames
</body>
</noframes>
</html>

remember that each frame needs its own name value to be different.