Thread: OT: html help
View Single Post
  #30  
Old June 17th, 2004, 09:58 AM
Ruatha's Avatar

Ruatha Ruatha is offline
Major General
 
Join Date: May 2002
Location: Linghem, Östergötland, Sweden
Posts: 2,255
Thanks: 0
Thanked 0 Times in 0 Posts
Ruatha is on a distinguished road
Default Re: OT: html help

Oki.
The Nav link tries to open a frame that exists in another document, ie test.
Make the main html like this instead and try:
Main.html:
code:
<html>
<frameset cols="315, 70%" border="0" scrolling="no">
<frame src="nav.html" name="nav" noresize noscroll border="0">
<FRAMESET rows="100, 200">
<FRAME src="http://www.shrapnelgames.com/cgi-bin...bb=forum;f=23" name="top">
<FRAME src="http://seiv.pbw.cc" name="bottom">
</FRAMESET>

</frameset>
</html>

Nav.HTML:
code:
<html>

<body BGCOLOR="004848" TEXT="FFFFFF" LINK="00FF00" VLINK="00FFFF" ALINK="FFFF00">

<p>
<center><b><a HREF="test.html" TARGET="top">test</a></b></center>
<center><b><a HREF="City.png" TARGET="top">City</a></b></center>
<center><b><a HREF="Jet Racer v0l50.zip" TARGET="bottom">Jet Racer</a></b></center>
<center><b><a HREF="racing.zip" TARGET="bottom">Speed Racer</a></b></center>
</p>
</body>
</html>

EDIT:Haven't tried it but it SHOULD work.
Delete all other files except main.html (Should be called index.html) and nav.html.
Then upload the rest of the files that should be there (i e City.png and the rest)

EDIT: Note, the zips doesn't have to be directed to any frame in particular as they will be downloaded.

[ June 17, 2004, 11:22: Message edited by: Ruatha ]
Reply With Quote