View Full Version : right frame on the top...


luvhartz
06-25-2005, 04:16 PM
Right hey everyone, wow its been a while me asking for help with frames (im back from tables hehe) anyway..

the problem:
I am making my frameset on the main page, i have 4 pages to put into this, so far i can only get 3 of them where i want them.

The reason the last one wont go in is a simple one.. i cant figure it out. So far i have a top frame, and underneath in that space is the left and middle frame here : http://www.freewebs.com/overhere/main.htm

What i want is this (its abit of a pic size sry!) : http://www.freewebs.com/angelic101/right.png

if thats too big then this is really basic...(its the 1 on the far right)
http://www.freewebs.com/angelic101/frame.bmp

this is my current code:

<HTML>
<HEAD><!--#include file="minclude.txt" -->
</HEAD>

<frameset rows="150,*">
<frame src=mtop.htm name=top scrolling=auto
marginwidth=0 marginheight=0 noresize=yes>
<frameset cols="100,*">

<frame src=mleft.htm name=left scrolling=auto
marginwidth=0 marginheight=0 noresize=yes>

<frame src=mcentre.htm name=main scrolling=auto
marginwidth=0 marginheight=0 noresize=yes>

</frameset>
</HTML>

where and what code would work for right.htm?

Sheila
06-25-2005, 04:37 PM
<HTML><HEAD><TITLE>title</TITLE></HEAD>

<FRAMESET ROWS="30%,70%">
<FRAME SRC="up.html" NAME="up">
<FRAMESET COLS="20%,60%,20%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="middle.html" NAME="middle">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>

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

</HTML>


Or did you want that right frame to go all the way from the bottom to the top? (Cause the pics are loading way to slow for me for some reason.)

Sheila
06-26-2005, 05:16 PM
Or did you want that right frame to go all the way from the bottom to the top? (Cause the pics are loading way to slow for me for some reason.)

If that is what you want, here is the code....

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

<FRAMESET COLS="80%,20%">
<FRAMESET ROWS="30%,70%">
<FRAME SRC="up.html" NAME="up" noresize>
<FRAMESET COLS="20%,80%">
<FRAME SRC="left.html" NAME="left">
<FRAME SRC="middle.html" NAME="middle">
</FRAMESET>
</FRAMESET>
<FRAME SRC="right.html" NAME="right" noresize>
</FRAMESET>

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

</HTML>