PDA

View Full Version : Need help with frameset


arbor
06-10-2000, 11:34 PM
I am trying to insert a following code into a new or existing page but am clueless as to how to do it. I am using a Dreamweaver3 for editor and it just gives out a invalid tag message with the whole code highlighted in yellow.

The code is for e-sports framed syndicated content.

<frameset rows=&quot;65,20,*&quot;>
[nbsp][nbsp][nbsp][nbsp]<frameset cols=&quot;*,470&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<frame name=&quot;logo&quot; src=&quot;logo.html&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<frame name=&quot;ad&quot; src=&quot;ad.html&quot;>
[nbsp][nbsp][nbsp][nbsp]</frameset>
[nbsp][nbsp][nbsp][nbsp]<frame name=&quot;nav&quot; src=&quot;nav.html&quot;>
[nbsp][nbsp][nbsp][nbsp]<frame name=&quot;main&quot; src=&quot;http://www.e-sports.com/&quot;>
</frameset>

Would appreciate any help.

Charles Capps
06-11-2000, 04:25 AM
What is the surrounding code?[nbsp][nbsp]

Framesets are illegal if you've declared a body tag, even inside <noframe>....

arbor
06-11-2000, 10:15 AM
Following is the new page code for Dreamweaver3
-------------------------------------------------
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<body bgcolor=&quot;#FFFFFF&quot;>

</body>
</html>
--------------------------------------------------
I tried putting the e-sports frameset code within body.

Where should I put it instead?

Thanks.
[This message has been edited by arbor (edited 06-11-00@10:16 am)]

Charles Capps
06-11-2000, 03:52 PM
Remove the open and close body tags, put the frameset code where they used to be - THAT should work.

arbor
06-13-2000, 01:36 AM
Thanks, I'll try that.

If I take out the body tags from the page, how do I put the content/image on the frameset?

WayneK
06-13-2000, 07:58 AM
Arbor,

This should give you a 3 row 1 column frameset with the top row containing another frameset of 2 colums and one row.

The source for the content is the .html files described in the src=&quot;logo.html&quot; for instance. They are seperate html files loaded into the frame. It's one window broken into 4 windows in this case each containing a html file.

the frame named &quot;main&quot; will get it's content from e-sports. The others &quot;logo&quot;,&quot;ad&quot; and &quot;nav&quot; are presumibly files you have created and are located in your web space.

hope this makes some sense