invisible frames

  • Thread starter Thread starter Jesse Hand
  • Start date Start date
Jesse Hand said:
Is it possible to make a page with frames on the left and top with
"invisible" frames? I want it to look seamless.

--


-Jesse

http://www.jessehand.com
Yes, you'll need to set the width to "0" in the HTML view.

Just make a frame and use the properties box to set a number, then switch to
the frames HTML and set that number to 0.

Last time I was looking at it, FP did not let the setting be put to 0;
however it is a valid HTML value to have in frames.
 
You want something like this:

<frameset framespacing="0" cols="140,*">
<frame name="contents" target="main" src="contents.htm" scrolling="auto"
marginwidth="10" marginheight="10">
<frame name="main" src="inst.htm">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>

I think the "framespacing" is what does it.
 
Back
Top