View Full Version : Look at this


play_crazed
06-10-2006, 11:06 PM
If any of you know how to use freewebs, can you go here (http://www.freewebs.com/play_crazed_newlayouts/index.htm) and tell me why it's doing this? Argh.

amyaurora
06-10-2006, 11:10 PM
The problem must be in your code. Can you share that.

play_crazed
06-10-2006, 11:12 PM
ok then...

<html>
<head>
<title>Play Crazed</title>
</head>
<frameset cols=20%,80%>
<frame src="left.html" name="leftside">
<frame src="right.html" name="rightside">
<frame src="right.html" name="rightside" style="border: 5 solid #000000">
<body>
</body>
<noframes>
<frame src="right.html" name="rightside" style="border: 5 solid #000000">
</noframes>
</html>
<html>
<head>
<title>Two Column CSS Layout</title>
<style type="text/css">

body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}

#menu {
position: absolute;
left: 5px;
padding: 0px;
width: 150px;
}

#content {

margin-left: 200px;
padding: 0px;
margin-right: 15px;
}

</style>
</head>
<body>

<div id="menu">

<br><a href="www.freewebs.com/play_crazed" target="rightside">Home</a>
<br>
<br>
<br><a href="www.freewebs.com/play_crazed/site.htm" target="rightside">Site</a>
<br>
<br>
<br><a href="www.freewebs.com/play_crazed/online.htm" target="rightside">Online</a>
<br>
<br>
<br><a href="www.freewebs.com/play_crazed/fun.htm" target="rightside">Fun Stuff</a>
<br>
<br>
<br><a href="www.freewebs.com/play_crazed/updates.htm" target="rightside">Updates</a>
<br>
<br>
<br><a href="www.freewebs.com/play_crazed/you.htm" target="rightside">You</a>

</div>


<div id="content">

Content goes here

</div>


</body>
</html>

amyaurora
06-10-2006, 11:22 PM
Are all the pages uploaded by chance?

*Still working on code*

amyaurora
06-10-2006, 11:31 PM
Here is a fixed code. I checked on your right and left pages and its says they don't exist. If they are uploaded then upload them again.

Note all the htm pages should be redone as html

<html>
<head>
<title>Play Crazed</title>
<style type="text/css">
body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}

#menu {
position: absolute;
left: 5px;
padding: 0px;
width: 150px;
}

#content {

margin-left: 200px;
padding: 0px;
margin-right: 15px;
}

</style>
</head>
<frameset cols=20%,80%>
<frame src="http://www.freewebs.com/play_crazed/left.html" name="leftside">
<frame src="http://www.freewebs.com/play_crazed/right.html" name="rightside">
<frame src="http://www.freewebs.com/play_crazed/right.html" name="rightside" style="border: 5 solid #000000">
<body>
</body>
<noframes>
<frame src="http://www.freewebs.com/play_crazed/right.html" name="rightside" style="border: 5 solid #000000">
</noframes>

<div id="menu">

<br><a href="http://www.freewebs.com/play_crazed" target="rightside">Home</a>
<br>
<br>
<br><a href="http://www.freewebs.com/play_crazed/site.htm" target="rightside">Site</a>
<br>
<br>
<br><a href="http://www.freewebs.com/play_crazed/online.htm" target="rightside">Online</a>
<br>
<br>
<br><a href="http://www.freewebs.com/play_crazed/fun.htm" target="rightside">Fun Stuff</a>
<br>
<br>
<br><a href="http://www.freewebs.com/play_crazed/updates.htm" target="rightside">Updates</a>
<br>
<br>
<br><a href="http://www.freewebs.com/play_crazed/you.htm" target="rightside">You</a>

</div>


<div id="content">

Content goes here

</div>

</html>


BTW Here is Lissa's frame page for more. http://www.lissaexplains.com/frames.shtml

play_crazed
06-10-2006, 11:39 PM
Thank you :D :teddy:

amyaurora
06-10-2006, 11:45 PM
You're welcome.