1) this is wrong forum, your ment to use the WebWizForums Support forum.
2) i think this would be well documented in the help files.
3) its been asked ALOT so a search would of helped.
to answer your question you put your header INSIDE the header.asp file and your footer INSIDE the footer
eg:
Header.asp: enter
<table> <tr> <td><img src="../images/logo.gif"></td> </tr> <tr> <td> |
footer.asp: enter
</td> </tr><tr> <td>home page | forum | contact us<br>copyright (c) me - all rights reserved</td> </tr> </table> |
this is just an example, you enter your own header and footer,
by leaving td open in the header and closing it in the footer you encase the forum side the table.
you can also use this to add links down the left side (like this site) by doing:
Header.asp: enter
<table>
<tr>
<td colspan="2"><img src="../images/logo.gif"></td>
</tr>
<tr>
<td> homepage<br> forum<br> contact us<br> </td>
<td> |
footer.asp: enter
</td>
</tr><tr> <td></td>
<td>home page | forum | contact us<br>copyright (c) me - all rights reserved</td>
</tr>
</table> |