lunitari_8100
03-19-2003, 05:23 PM
Okie this probably is a fairly easy question but I'm stumped for the moment. Okie I want to put frames around my whole page...like a top, bottom, left, and right frame. And in the middle will be a medium sized area. Here's the problem...I'm looking at a simple code like this:
<html>
<head>
<title>My Page</title>
</head>
<frameset rows="100,*">
<frame src="top.html" NAME="top">
<frameset cols="160,*">
<frame src="left.html" NAME="left">
<frame src="right.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Now this code is giving me a top and left frame...but the thing is its calling the right large section of my page the right frame...but I want to use a diff right frame. So now how in the world do I get a center section in there between the right and the left frames?
<html>
<head>
<title>My Page</title>
</head>
<frameset rows="100,*">
<frame src="top.html" NAME="top">
<frameset cols="160,*">
<frame src="left.html" NAME="left">
<frame src="right.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
Now this code is giving me a top and left frame...but the thing is its calling the right large section of my page the right frame...but I want to use a diff right frame. So now how in the world do I get a center section in there between the right and the left frames?