
Originally Posted by
bobber205
One note: Are you trying to make it so that the top and foot does not go anywhere when the user scrolls around the page?
Yes, exactly.

Originally Posted by
bobber205
To make something like that, you'll have to use CSS.
Can you give the basic code of it in CSS?

Originally Posted by
bobber205
Try making the foot and top have 10% height and 100% width, while the middle has 80% height and 100% width.
Do you mean the following?
Code:
<table height='10%'>
<tr>
<td>top</td>
</tr>
</table>
<table height='80%'>
<tr>
<td>
<iFrame border=0 frameBorder=0 framespacing=0
marginHeight=0 marginWidth=0 scrolling=no vspace=0
width=100% height=100% src=iFrame.htm align="center">
</iFrame>
</td>
</tr>
</table>
<table height='10%'>
<tr>
<td>foot</td>
</tr>
</table>
Bookmarks