MyBB Community Forums

Full Version: How can I get rid off the forum legend?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Friends,

Does anyone know how I can get completely rid off the forum legend?

Thanks!
(2012-12-05, 11:50 PM)Niggidea Wrote: [ -> ]Hello Friends,

Does anyone know how I can get completely rid off the forum legend?

Thanks!


At the index template find the following code and either remove it or comment it out.


<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

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

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>