Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 690

How to change the Forum Legend Small Text

$
0
0
Go to your ACP->Templates->The theme you want to edit->Index Page Templates->index now look for:
Code:
<dl class="forum_legend smalltext">

Now replace all the code below it with the following code:
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:
Code:
<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!

Viewing all articles
Browse latest Browse all 690

Trending Articles