View Full Version : I need some frame help..


bonkas
03-21-2003, 11:51 PM
Ok guys this is what i'm trying to do..

i have this code here...

<frameset rows="16%,84%">
<frame src="top.htm" name="top">
<frameset cols="50%,50%">
<frame src="left.htm" name="left">
<frame src="right.htm" name="right">
</frameset>

well tht is ok but the left frame i wan't to continue right to the top like if you only have 2 frames.. get me?.. well also i don't wan't the top frame to span across the whole page.. i only want it to go untill it reaches the left frame and not go all the way across the page.. i only want it to go on say the right half of the page.. is this possible? heres a few pics of what i mean..

Normal Frames:
http://image1ex.villagephotos.com/pubimage.asp?id_=1910043

What I Want:
http://image1ex.villagephotos.com/pubimage.asp?id_=1910042

bonkas
03-21-2003, 11:56 PM
I am only a beginner.. so please don't be too complicated..lol heres the first site i have ever made :) Soldat Strikedown (http://www.hostultra.com/~bonkas)

bejayel
03-22-2003, 12:13 AM
try putting the frame src code for the top frame after the frame src for the oterh two. i think that will work. though i dont work with frames much at all. (ssi is much better to use i find) anyway on another note. try not to double post.

alkaline39
03-22-2003, 12:20 AM
This will be your index.html

<html>
<head>
<title>My Page</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>

this will be your right.html

<html>
<head>
<title>My Page</title>
</head>
<frameset rows=20%,80%>
<frame src="top.html" name="top">
<frame src="bottom.html" name="bottom">
</frameset>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>

bejayel
03-22-2003, 12:33 AM
huh you can do t using only a index.html page. ok i will test things out on my computer for you. bu i know it can be done with only the index.html page. anyway brb. sorry but it will take more than the given edit time. so i will have to double post.

bejayel
03-22-2003, 12:40 AM
darnit almost beat the edit time. anyway here si the code. lol what was that guy thinking. making the right.htm a frame src just to do a silly thing like that. anyway post this in your index.htm

<frameset cols="50%,50%">
<frame src="left.htm" name="left">
<frameset rows="16%,84%">
<frame src="top.htm" name="top">
<frame src="right.htm" name="right">
</frameset>
</frameset>

this gives the same results as above, cept i used your numbers, and you only need to have an index.htm, right.htm, top.htm, and left.htm instead of an index.htm, top.htm, left.htm, right.htm, right_bottom.htm just saves a little confusion in other words.

bonkas
03-22-2003, 01:23 AM
Thank you very much that is what i needed... all i need to change is the sizes.. sorry about double posting i am new here..