argg Frames!

windows

Guest
Hello all,<br />
<br />
I am working on a site that will (hopefully) have frames. The way I designed the graphics for the page calls for frames with 4 parts:<br />
1.)a static logo in the upper left corner.<br />
2.)a banner of the same HEIGHT as the static logo occupying the right side of the page at the top.<br />
3.)a vertical menu same WIDTH as static logo on the left side.<br />
4.)and the main display taking up the rest of the space on the right.<br />
<br />
Here is an example page: <!-- m --><a class="postlink" href="https://www.cusa-hfs.com/cgi-bin/hfssvc/tvtfcu/">https://www.cusa-hfs.com/cgi-bin/hfssvc/tvtfcu/</a><!-- m --><br />
<br />
If anyone can help it would be greatly appreciated.<!--content-->you just need, what, the code for the frames? that would be easy.<br />
<br />
say the static logo is 100 wide by 50 tall, ok?<br />
<br />
<frameset rows="60,*"> <br />
<br />
<frameset cols='110,*'> <br />
<frame name="logo" src=http://www.htmlforums.com/archive/index.php/"logo.html" marginwidth=0 marginheight=0 scrolling=no><br />
<frame name="banner" src=http://www.htmlforums.com/archive/index.php/"banner.html" marginwidth=0 marginheight=0 scrolling=no><br />
</frameset><br />
<br />
<frameset cols='110,*'> <br />
<frame name="menu" src=http://www.htmlforums.com/archive/index.php/"menu.html" marginwidth=0 marginheight=0 scrolling=auto><br />
<frame name="main" src=http://www.htmlforums.com/archive/index.php/"main.html" marginwidth=0 marginheight=0 scrolling=auto><br />
</frameset> <br />
<br />
</frameset><br />
<br />
once you've got your pages put in, play with the numbers (the 60 and the 110) until it looks exactly right.<!--content-->
 
Back
Top