Click to See Complete Forum and Search --> : what is wrong with this code?!


dawnjulie
02-22-2003, 08:24 PM
Hi,

I'm trying to put together a frame set-up for a site. I want the top row to be a frame and below it, two columns (menu and main pages).

When I try the code below in an index.html, only the top frame shows. All pages have been checked and appear fine on their own, but not in the frame code below.

Help!

<html><head><title>page title</title></head>
<frameset rows="694,*" frameborder=no border=0>

<frame src="top.html" name="top" scrolling=no marginheight=0 marginwidth=0>

<frameset cols="140,*" frameborder=no border=no>
<frame src="menu.html">
<frame src="main.html" name="main">

</frameset> </frameset>
</body></html>