Wordplay
03-14-2011, 02:34 PM
ok so i'm designing a template from scratch because i can't get used to this new vbulletin style and have a few questions.
QUESTION 1: the order is
header
headinclude
headinclude_bottom
forumhome/forumdisplay/showtrhead/whatever
footer
right? what actually defines this?
(is there a container template or such that calls for all this?)
QUESTION 2: so now if i want to create a completely new style how would i split up my 3 tables, for example lets say my code is:
<table id="MyOwnFixedContainer" width="1088" align="center" border="0">
<tr>
<td id="header"> </td>
</tr>
<tr>
<td id="forumbit or whatever"> </td>
</tr>
<tr>
<td id="footer"> </td>
</tr>
</table>
would this be split into:
HEADER TEMPLATE
<table width="1088" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="header"> </td>
</tr>
<tr><td id="forumbit or whatever">
FOOTER TEMPLATE
</td>
</tr>
<tr>
<td id="footer"> </td>
</tr>
</table>
and well whatever i want to actually be between header and footer would just be in showthread/forumdisplay/memberinfo or whatever.
would this work?
QUESTION 1: the order is
header
headinclude
headinclude_bottom
forumhome/forumdisplay/showtrhead/whatever
footer
right? what actually defines this?
(is there a container template or such that calls for all this?)
QUESTION 2: so now if i want to create a completely new style how would i split up my 3 tables, for example lets say my code is:
<table id="MyOwnFixedContainer" width="1088" align="center" border="0">
<tr>
<td id="header"> </td>
</tr>
<tr>
<td id="forumbit or whatever"> </td>
</tr>
<tr>
<td id="footer"> </td>
</tr>
</table>
would this be split into:
HEADER TEMPLATE
<table width="1088" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="header"> </td>
</tr>
<tr><td id="forumbit or whatever">
FOOTER TEMPLATE
</td>
</tr>
<tr>
<td id="footer"> </td>
</tr>
</table>
and well whatever i want to actually be between header and footer would just be in showthread/forumdisplay/memberinfo or whatever.
would this work?