|
You have another option. You could use frames, and your frameset would include only 1 frame at 100%. Then call the page you want to display as the frame source.
Like this:
<HTML>
<HEAD>
<TITLE>your title</TITLE></HEAD>
<frameset framespacing="0" border="0" rows="1,100%" frameborder="0">
<frame name="header" scrolling="no" noresize target="main" marginwidth="0" marginheight="0">
<frame name="main" src="http://www.yoursite.com" marginwidth="0" marginheight="0" scrolling="auto">
You'd probably want to include a <noframes> option as well.
|