View Full Version : Frames Help


jimslady
02-25-2003, 02:33 PM
I hope someone canhelp me, I am trying to make the Frame that is on Lisa's Frame page, but when I do what it says and upload the page, it comes up saying page not found in both the right and left frames, can someone explain to me what I need to do?
Thanks

forgot to add, it says "Page Not Found"


Please do not double post....use the edit button. - Moderator

Sheila
02-25-2003, 02:45 PM
Are you sure you made the pages that go with the frame....for example.... left.html right.html

Can you please give us the url to the site you are having problems with? (Because we can't really help unless we see the code or site.)

jimslady
02-25-2003, 02:50 PM
The web site I tried the fram thing on is
http://petz4me2002.netfirms.com/index.html

I also noticed on another question about the same thing and I may have found my problem, but my next question is on the html for the index thingy, it has this listed:
<a href="your main page.html">Click Here</a>

What do I put where it says "your main page.html" and what do I put where it says Click here?

Sheila
02-25-2003, 02:53 PM
You have too much stuff on your index page. It should ONLY be the frame 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="your main page.html">Click Here</a>
</noframes>
</html>

---------

You make a left.html and put your links on there. Then you make a right.html and put your introductory stuff there.

---------

For your other question.......You put the link to where your 'links' for your site are. So if people can't view frames they can at least visit your site. Or you can put 'Sorry your browser doesn't support frames' instead of putting a link.

jimslady
02-25-2003, 02:58 PM
so where it says "your main page.html" I would put left.html?
I understand the rest I think.
I'm sorry fo being a pain

Sheila
02-25-2003, 02:59 PM
Yes.

Is okay.

jimslady
02-25-2003, 03:02 PM
OOps, one more question, so If my introductory page is my home.html, I would change it from home.html to right.html so it would show up? Correct?

Thank you for your help

Sheila
02-25-2003, 03:05 PM
Welcome. If you need anymore help, just ask. :)

jimslady
02-25-2003, 03:12 PM
Hi, I edited the Thank you and I know I can't double send, can you help me with the question in the one I left when I told you Thank You?

Sheila
02-25-2003, 03:18 PM
Originally posted by jimslady
OOps, one more question, so If my introductory page is my home.html, I would change it from home.html to right.html so it would show up? Correct?

Thank you for your help

You can do it that way. Or change the right.html in the frame code to home.html.