MyBB Community Forums

Full Version: How to change the Forum Legend Small Text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Go to your ACP->Templates->The theme you want to edit->Index Page Templates->index now look for:
<dl class="forum_legend smalltext">

Now replace all the code below it with the following code:
<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.png" alt="{$lang->new_posts}" title="{$lang->new_posts}"  style="vertical-align:padding-bottom: 4px" /></dt><dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.png" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}"  style="vertical-align:padding-bottom: 4px" /></dt><dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/locked.png" alt="{$lang->forum_locked}" title="{$lang->forum_locked}"  style="vertical-align:padding-bottom: 4px" /></dt><dd>{$lang->forum_locked}</dd>

	<dt><img src="{$theme['imgdir']}/redirect.png" alt="{$lang->forum_redirect}" title="{$lang->forum_redirect}"  style="vertical-align:padding-bottom: 4px" /></dt><dd>{$lang->forum_redirect}</dd>
</dl>

Don't go below:
<br class="clear" />
That code below must stay so you don't mess up the style/layout of your forum.

Now with those image names they can be whatever you want just put the images into the theme directory you want the images to show up.

Enoy & Happy Theming!