Frames

kymation <[email protected]> 14 Sep 2003 00:23:26 -0000
Newsgroups gmane.comp.web.oscommerce.general
Message-ID <976541b74bff769179ebde3c3fc098bd@osCommerce-Forums>
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=229147#229147
----------------------------------------------------------------

This is done using frames. If you look at the source code of the page you linked to, you'll see

[code]
<frameset rows="45,*">
  <frame name="tep_header" scrolling="no" noresize target="content" src="live_shops_frame_header.php?url=http://www.warmwoman.com">
  <frame name="content" src="http://www.warmwoman.com">
...................
</frameset>
[/code]

inside the body of the page. This gives you a frame with the top header and another with the site being displayed. Do a web search for HTML frames, there are plenty of tutorials out there.

One downside of this: some sites contain code to break out of your frames, so test this before using on any external site.

Regards
Jim