View Full Version : Help!!!!!!!!!!


Ris
03-20-2003, 02:03 AM
I've followed the instructions on how to make a frame on the frames page on this site, but no frames came out on my site. Why is that?

Please help,

Ris

pb&j
03-20-2003, 03:16 AM
can you post a link to the site in question?
or all of the coding you used?
its really hard to fix the unseen.
thanks.

Ris
03-20-2003, 04:33 AM
The site was this site, Lissa explains it all and heres the coding


<html>
<body>
<body background="http://www.angelfire.com/anime5/animeaholic/images/bkgstars.gif">
<body text="#E7040D" vlink="E7040D" link="E7040D" alink="E7040D">
<frameset cols= 20%,80%>
<frame src="left.html" name="navigator" scrolling=no>
<frame src="right.html" name=main>
</body>
</html>

Sheila
03-20-2003, 06:24 AM
You can't put backgrounds on the frame code page.

Just save this as index.html

<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>
</html>


Then make a left.html and a right.html using regular html (http://www.lissaexplains.com/html.shtml#setup).


(Note....If you are using a easy/basic/page builder, you can't use frames. You will have to switch over to the advanced file manager.)