Sunnystar
03-06-2003, 01:04 AM
Ok, I need serious hep! How do I make frames with a left side,center, and right side and top and bottom. The links would be in the right and some in the left side to target to the center. I need top and bottom to add some extra stuff like graphics that have no where else to go. I've seen it done but don't know how to do it. Please help.
You may try this...
<html>
<framset rows="200,*,200">
<frame name="top" src="toppage.html">
<frameset cols="200,*,200">
<frame name="left" src="leftpage.html">
<frame name="main" src="mainpage.html">
<frame name="right" src="rightpage.html">
</frameset>
<frame name="bottom" src="bottompage.html">
</frameset>
</html>
Or perhaps this...
<html>
<framset rows="200,*,200">
<frame name="top" src="toppage.html">
<frameset cols="200,*,200">
<frame name="left" src="leftpage.html">
<frame name="main" src="mainpage.html">
<frame name="right" src="rightpage.html">
</frameset>
<frame name="bottom" src="bottompage.html">
</frameset>
</html>
Depending on which type of layout you are looking for.
As for your links and targeting, that goes into the pages that are displayed within the frames. Just add something like...
TARGET="main"
To your link tags and the links will open into the part named "main" as described in the framesetup part.