MyBB Community Forums

Full Version: Add thead to bottoom?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I add a line to the bottoom of the table like this. On main index not individual boards.
Forum Bit Templates > forumbit_depth1_cat

Find:
{$sub_forums}
</tbody>

Add:
<tr><td class="thead" colspan="5">&nbsp;</td></tr>

Berore:
</table>

so it looks like:
{$sub_forums}
</tbody>
<tr><td class="thead" colspan="5">&nbsp; </td></tr>
</table>
You need that nonbreaking space in there to maintain the height of the row.
Beautiful thanks. Mark solved.