Frames On All Sides

liunx

Guest
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:<br />
<br />
<html><br />
<head><br />
<title>My Page</title><br />
</head><br />
<frameset rows="100,*"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"top.html" NAME="top"><br />
<frameset cols="160,*"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"left.html" NAME="left"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"right.html" NAME="right"><br />
</frameset><br />
</frameset><br />
<body><br />
</body><br />
<noframes><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"your main page.html">Click Here</a><br />
</noframes><br />
</html><br />
<br />
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?<!--content-->Try this..<br />
<frameset rows="100,*,100"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"top.html" NAME="top"> <br />
<frameset cols="160,*,160"> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"left.html" NAME="left"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"center.html" NAME="center"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"right.html" NAME="right"> <br />
</frameset><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"bottom.html" NAME="bottom"> <br />
</frameset><!--content-->
 
Back
Top