View Full Version : Code Help


Creature963
12-17-2004, 04:03 AM
I am trying to get a new site set up using the frame samples here, but for some reason it won't work. On the main page my code is set up as:

<frameset rows="100,*">
<frame src="top.html" NAME="top" style="border: 5 solid #FFFFFF">
<frameset cols="160,*">
<frame src="left.html" NAME="left" style="border: 5 solid #FFFFFF">
<frame src="right.html" NAME="right" style="border: 5 solid #FFFFFF">
</frameset>
</frameset>

Despite creating the three files and editing them (top.html, left.html, right.html) nothing will show up. Can anyone please help me?

pb&j
12-17-2004, 04:17 AM
can i presume you are not using an online easy page maker?

please provide a link to your frameset page online so we may see the problem in action. the coding you provided looks to be ok so far.

Creature963
12-17-2004, 04:24 AM
I just started up a page at 50Megs, http://creature963.50megs.com
Right now it is just black. I had to put in all the code, but it organizes the pages. Here is a picture of the web shell if it will help: http://img140.exs.cx/img140/8508/webamajiger5ln.png

pb&j
12-17-2004, 12:47 PM
either you did it yourself, or you used an "easy" page editor, but there is error in your frameset page.

delete the red parts...

<html>
<head>
<title>Creature963@50MEGS</title>
</head>
<body bgcolor="black" text="white" link="teal" alink="teal" vlink="teal">
<basefont size="3">
<style type="text/css">
body { margin-left: 0%; margin-right: 0%; }
h2 { margin-top: 0%; margin-bottom: 0%; }
</style>

<frameset rows="100,*">
<frame src="top.html" NAME="top" style="border: 5 solid #FFFFFF">
<frameset cols="160,*">
<frame src="left.html" NAME="left" style="border: 5 solid #FFFFFF">
<frame src="right.html" NAME="right" style="border: 5 solid #FFFFFF">
</frameset>
</frameset>

</body>
</html>

Creature963
12-17-2004, 08:14 PM
There we go, thank you very much for your help.

pb&j
12-17-2004, 11:30 PM
no worries. good luck!