View Full Version : Complicated frameset


bubblegummy
04-15-2003, 09:06 AM
If you go to http://www.geocities.com/thepotatoprincess/frames.gif you'll see a diagram - that's how I'd like my frameset to look.

I got this code from Sheila's frame codes website:

<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET ROWS="20%,60%, 20%">
<FRAME SRC="up.html" NAME="up">
<FRAMESET COLS="20%,80%">
<FRAME SRC="left.html" NAME="left">
<FRAMESET ROWS="20%,70%,10%">
<FRAME SRC="up2.html" NAME="up2">
<FRAME SRC="main.html" NAME="main">
<FRAME SRC="down.html" NAME="down.html">
</FRAMESET>
</FRAMESET>
<FRAME SRC="bottom.html" NAME="bottom">

<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>

</HTML>

It's very close to what I'd like, but there's no right hand frame in the middle section - There are two frames in the middle part of Sheila's frameset, and I'd like three. I'm not sure where to insert that extra line of coding and what to change.

Please help if you can :)

epolady
04-15-2003, 09:45 AM
Maybe I didn't read your post correctly, but aren't there 3 in the middle? See diagram link below

http://epo.250free.com/3.gif

Perhaps you can draw how you'd like the frameset? Or maybe Sheila can delete this post and answer your question.

bubblegummy
04-15-2003, 10:32 AM
Sorry, I must have been unclear.

http://www.geocities.com/thepotatoprincess/frames2.gif

It's an extra column I want, not another row.

The frame code further up the page is the code for the frames on the left hand side of the diagram.

The right-hand side of the diagram shows the extra frame I'd like in red - where would I make changes in the code?

Sorry bout that :s

Sheila
04-15-2003, 11:48 AM
I hope this is correct. I didn't check....


<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET ROWS="20%,60%, 20%">
<FRAME SRC="up.html" NAME="up">
<FRAMESET COLS="20%,60%,20%">
<FRAME SRC="left.html" NAME="left">
<FRAMESET ROWS="20%,70%,10%">
<FRAME SRC="up2.html" NAME="up2">
<FRAME SRC="main.html" NAME="main">
<FRAME SRC="down.html" NAME="down.html">
</FRAMESET>
<FRAME SRC="right.html" NAME="right">
</FRAMESET>
<FRAME SRC="bottom.html" NAME="bottom">
</FRAMESET>


<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>

</HTML>

bubblegummy
04-15-2003, 12:06 PM
Aww, thanks Sheila! That's perfect =)