Frameset Help!

liunx

Guest
Okie easy question I have the below codes. And I have frames on all sides of my page. Now I'm wondering if theres a way to make the right and left side extend all the way to the top and bottom of the pages...instead of the bottom and top extending the entire width of the page.<br />
<br />
Thanks!<br />
<br />
<frameset rows="100,*,100" border=0 frameborder=0 framespacing=0><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="top" scrolling=no> <br />
<frameset cols="160,*,160" border=0 frameborder=0 framespacing=0> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="left" scrolling=no><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="center" scrolling=no><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="right" scrolling=no> <br />
</frameset><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="bottom" scrolling=no> <br />
</frameset><!--content-->You asked a similar question previously, which I answered. Please keep your posts (use reply) together so others can follow the progress rather than starting a new thread. When you reply to a post it will go to the top of the list. So it will get noticed.<br />
<br />
Here we started with 'rows' and defined the number of 'cols' in each row<br />
<frameset rows="100,*,100" border=0 frameborder=0 framespacing=0> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="top" scrolling=no> <br />
<frameset cols="160,*,160" border=0 frameborder=0 framespacing=0> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="left" scrolling=no> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="center" scrolling=no> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="right" scrolling=no> <br />
</frameset> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="bottom" scrolling=no> <br />
</frameset><br />
Now, instead, we'll start with 'cols' and define the number of 'rows' in each col<br />
<frameset cols="160,*,160" border=0 frameborder=0 framespacing=0> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="left" scrolling=no> <br />
<frameset rows="100,*,100" border=0 frameborder=0 framespacing=0> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="top" scrolling=no> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="center" scrolling=no> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="bottom" scrolling=no> <br />
</frameset> <br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"" NAME="right" scrolling=no> <br />
</frameset><br />
Get the idea!<!--content-->
 
Back
Top