View Full Version : I dunno if this is really hard or easy..but either way can you help me???


roxygurlie
07-10-2003, 04:50 PM
please help! How do you make like a side navigation panel like the one on this site where all her links are?? I know that she made a huge table that fit the whole page but can you do that without making a large table?? thx:)

sebluver
07-10-2003, 04:52 PM
You could probably make it using frames, and then placing the image map in the frame, or just the links in the frame. Does that answer your question a bit?

roxygurlie
07-10-2003, 05:08 PM
hmm ya i think.. thanx! I'll go try doing that:)

roxygurlie
07-10-2003, 05:49 PM
Ahhh! see your frames idea was exactly what i wanted but I can't get it to work right...when you make a frame... can I just start from the webpage i was using before?? I don't really get it.. like do i have to make new page and amke the frame on there and link it to my main page?? Because now what I just did was put it on the page i was using before then in the body sec. I put my whole webpage codes...but then when i preview it it comes out that my page can't be found.. I think Im doing something wrong.. please help!!!

sebluver
07-10-2003, 05:58 PM
What code are you using? Can I see it? It might just be that your links don't match up.

roxygurlie
07-10-2003, 06:11 PM
ya here is my code...


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="www.angelfire.com.rock3.rshoo619.Imagine.html">Click Here</a>
</noframes>
</html>

sebluver
07-10-2003, 06:38 PM
You don't have anything in your body part.

<html>
<head>
<title>My Page</title>
</head>
<body>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
</frameset>
<noframes>
<a href="www.angelfire.com.rock3.rshoo619.Imagine.html">Click Here</a>
</noframes>
</body>
</html>

Does that work? If not, then make sure you have a page named left.html, and put it in the same folder as the one that has your main page with the frames code in it.

roxygurlie
07-10-2003, 06:44 PM
ohh... i think i understand now! thx.. I'll go try that :)

roxygurlie
07-10-2003, 06:53 PM
yay!! i finally got it to work right!! thanks!! :)