View Full Version : Please Help Me Fix My Frames!!


kar3n33
07-12-2006, 07:58 PM
I don't know what to do with the far right frame on my layout..
How can I add the far right frame into the HTML below so that I can change the background color of the frame??

<FRAMESET COLS="212,600,*"frameborder=no framespacing=0>
<FRAME SRC="left.html" NAME=left marginwidth="0" marginheight="0" noresize scrolling=no>
<FRAMESET ROWS="300,*">
<FRAME SRC="top.html" NAME=top marginwidth="0" marginheight="0" noresize scrolling=no>
<FRAME SRC="bottom.html" NAME=bottom marginwidth="0" marginheight="0" noresize>
</FRAMESET>

my site is http://www.geocities.com/kzpcem/new/test.html

pb&j
07-13-2006, 07:18 AM
looks like you are missing a FRAME tag...

<FRAMESET COLS="212,600,*"frameborder=no framespacing=0>
<FRAME SRC="left.html" NAME=left marginwidth="0" marginheight="0" noresize scrolling=no>
<FRAMESET ROWS="300,*">
<FRAME SRC="top.html" NAME=top marginwidth="0" marginheight="0" noresize scrolling=no>
<FRAME SRC="bottom.html" NAME=bottom marginwidth="0" marginheight="0" noresize>
</FRAMESET>
<FRAME SRC="left.html" NAME=left marginwidth="0" marginheight="0" noresize scrolling=no>
</FRAMESET>

kar3n33
07-14-2006, 04:29 AM
thank you so much!

pb&j
07-14-2006, 02:07 PM
no worries. good luck!