View Full Version : What's wrong with my frame code??


LindseyJuly
01-17-2003, 05:44 PM
Okay, here is the code that I have on my page and for some reason it does not want to work!

<frameset rows="100,*">
<frameset cols="96, 2, 2">
<frame src="/mo/lindseyJuly/cliqueheader.html" NAME="top" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frameset cols="2, 23, 2, 73">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/testing.html" NAME="right" noresize style="border: 5 solid navy">

</FRAMESET>
</FRAMESET>


Please tell me how I can get it to look like this or similar to this...

I---------------I-I-I
I---------------I-I-I
I-I I-I I
I-I I-I I
I-I---I-I-----------I

Peter
01-17-2003, 07:30 PM
Try this site:
http://framecodes.tripod.com/code.html

Alcy
01-18-2003, 12:31 AM
I'm not sure if this is preventing it from working, but you're missing a </frameset>

<frameset rows="100,*">

<frameset cols="96, 2, 2">
<frame src="/mo/lindseyJuly/cliqueheader.html" NAME="top" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
</FRAMESET>

<frameset cols="2, 23, 2, 73">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/cliquemenu.html" NAME="left" scrolling=no noresize style="border: 5 solid navy">
<frame src="/mo/lindseyJuly/testing.html" NAME="right" noresize style="border: 5 solid navy">
</FRAMESET>

</FRAMESET>

LindseyJuly
01-18-2003, 04:09 PM
Alcy you are a lifesaver! That was exactly what I needed...it was as simple as that, and I just couldn't figure out what I was doing wrong. Thanks a ton! :o)