Dash488
02-04-2003, 10:34 PM
Ok lets say i have a Normal page with 3 fames (top,Right,Left) in my index is what you have to open up to see all the frames. NOW how do you add another page to your site with keeping the fames (top and left) when all you want to do is replace the right frame with another page you made?
epolady
02-04-2003, 10:41 PM
Yes, but the right frame will only contain HTML data, no need for extra framing codes.
i.e.
<HTML><HEAD><TITLE>title</TITLE></HEAD>
<FRAMESET COLS="20%, 80%">
<FRAME SRC="left.html" NAME="left">
<FRAMESET ROWS="30%,70%">
<FRAME SRC="up.html" NAME="up">
<FRAME SRC="right.html" NAME="right">
</FRAMESET>
</FRAMESET>
<NOFRAMES>
Sorry, but your browser does not support frames.
</NOFRAMES>
</HTML>
Source (http://framecodes.tripod.com/)
Left.html will only have your basic HTML coding. Like your menu. Basically all your pages will be the basic HTML coding, except the frameset page (in this case index.html).
Dash488
02-04-2003, 11:14 PM
im still not understanding what your saying??? I geuse what my question is how do i go about naming the parts of my site and still keep the fames atached when their not called "right"?
Sheila
02-05-2003, 06:11 AM
The NAME part is for when you are targetting your links...<a href="your link.html" target="right">link name</a> (you can rename them if you want)
You can always rename your .html items in your frame code.
Sorry if I didn't understand.