MyBB Community Forums

Full Version: footer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do you add a footer after the forum ends
like this
You need to add moderators to the forum.

[wiki]Admin_CP_Moderators#Adding_a_Moderator[/wiki]
No,add footer after the forum ends.its the part highlighted

Edit:
New attachment to explain better
Ahh. I see what you mean, in the old pic, the highlighted part looked like part of the theme. My bad, sorry.

This should be what you want.
ACP -> Templates -> Modify / Delete -> *Template Set* -> Expand -> Forum Bit Templates -> forumbit_depth1_cat

Find:
{$sub_forums}
Add under:
<td class="thead" colspan="5">&nbsp;</td>
what if I wanted to add a different image to the footer instead of the header image
And when I collapse the forum it show the footer with it
Silent Wrote:what if I wanted to add a different image to the footer instead of the header image
And when I collapse the forum it show the footer with it

You would need to change the tr class to a custom created one in the ACP or add a style tag.
<td class="customclass" colspan="5">&nbsp;</td>
Or
<td style="background-image: url(path/to/image);" colspan="5">&nbsp;</td>

To get the "footer" to show on collapse, you need to add the extra tr tag after the clossing tbody tag.
Find:
{$sub_forums}
</tbody>
Add footer code after that.
Where does it go for the board statics to collapse with the footer?
ACP -> Templates -> Modify / Delete -> *Template Set* -> Expand -> Index Page Templates -> index

Find:
{$forumstats}
</tbody>
Add your extra tr tag after that.