Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

complex frames? 1

Status
Not open for further replies.

mackey333

Technical User
May 10, 2001
563
US
how (if possible) would I accomplish this with frames?:
Code:
_____________
|___________|
|   |   |   |
|   |   |   |
|   |   |   |
|   |   |   |
|   |   |   |
|___|___|___|
|___________|

As you can see (hopefully) I need to have a row at the top, three colums, and a row and the bottom. I can do one or the other, but how do I combine them? -Greg :-Q
 
Try the following:

<frameset rows=&quot;10%,80%,10%&quot;>
<frame name=&quot;header&quot;>
<frame name=&quot;main&quot;>
<frame name=&quot;footer&quot;>

This will get the threee rows, then set the initial page (main) as a 3 col page.

 
Or to do it completely with frames:

<frameset rows=&quot;10%,80%,10%&quot;>
<frame name=&quot;header&quot;>
<frameset cols=&quot;33%,33%,*&quot;>
<frame name=&quot;left&quot;>
<frame name=&quot;middle&quot;>
<frame name=&quot;right&quot;>
</frameset>
<frame name=&quot;footer&quot;>
</frameset>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top