View Full Version : Frames Help PLZZZZZ


jimslady
02-26-2003, 03:12 PM
Ok, it's me again. I have another problem. Yesterday when I did my index page and left and so on, my page looked fine. Today when I came on and checked my page, the only think showing is the background color for the index page and nothing else.
Here is the URL so you can see for your self
http://petz4me2002.netfirms.com/index.html

Please help me if you can.
Thanks :)

Sheila
02-26-2003, 03:18 PM
You have stuff on your index.html that should not be there. Index.html should only be for your frame code. that is what holds the frames together.


So this is the ONLY thing that should be on index.html

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

jimslady
02-26-2003, 03:28 PM
This is what I have, so I can't put a back ground color and the no scrolling and no resize on it?

<html>
<head>
<title>My Page</title>
</head>
<body bgcolor="#CCFFFF">
<frameset cols=20%,80%>
<frame src="left.html" name="leftside" scrolling=no noresize>
<frame src="home.html" name="rightside">
</frameset>
<body>
</body>
<noframes>
<a href="left.html">Click Here</a>
</noframes>
</html>

Sheila
02-26-2003, 03:30 PM
No you can't put a background on it.

No scrolling and no resize are good where you have it in the frame code. Those codes are for what appears in the left.html or right.html parts of the frame.

jimslady
02-26-2003, 03:31 PM
ok, again Thank you for your help. Thank God for these message boards :)

Sheila
02-26-2003, 03:34 PM
Welcome :)