Thread: OT: html help
View Single Post
  #28  
Old June 12th, 2004, 10:38 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

Hmm, I can't see any horisontal frame.
What I'd do would be something like this:
code:
For index.html:
<html>
<frameset cols="315, 70%" border="0" scrolling="no">
<frame src="nav.html" name="nav" noresize noscroll border="0">
<frame src="test.html" name="test" noresize border="0">
</frameset>
</html>

test.html:
<HTML>
<FRAMESET rows="100, 200">
<FRAME src="test2.html" name="top">
<FRAME src="test3.html" name="bottom">
</FRAMESET>


</HTML>

It works for me..

[ June 12, 2004, 10:26: Message edited by: Ruatha ]
Reply With Quote