MyBB Community Forums

Full Version: Tfoot
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i add the tfoot to the bottom of every forum.
Thank you.
Edit the templates?

Just put this right before the </table> in forumbit_depth1_cat
<tr>
<td class="tfoot">&nbsp;</td>
</tr>
(2010-02-24, 02:38 PM)Joshee Wrote: [ -> ]Edit the templates?

Just put this right before the </table> in forumbit_depth1_cat
<tr>
<td class="tfoot">&nbsp;</td>
</tr>

thank you but that only seems to add it under the forum icons.
Right, make it this:
<tr>
<td class="tfoot" colspan="6">&nbsp;</td>
</tr>
(2010-02-24, 02:43 PM)Joshee Wrote: [ -> ]Right, make it this:
<tr>
<td class="tfoot" colspan="6">&nbsp;</td>
</tr>

Thank you i had just try'd that just before you posted.