MyBB Community Forums

Full Version: Remove Icon Legend ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i remove the icon legend at the bottom of my forums which shows icons for if forum is locked,New post,no new post,i want to remove it ?

Please help.
i want to remove legend from index page and not thread.
Go to: Admin CP > Templates > Your theme's templates > Index Templates > index > search the following and remove;
<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>
Oh, my bad, sorry Smile
@Yaldaram thanks for answer.
thanks a lot yaldaram and its fine Jovan J,thanks for giving your time to help me.
(2012-04-09, 02:55 PM)Yaldaram Wrote: [ -> ]Go to: Admin CP > Templates > Your theme's templates > Index Templates > index > search the following and remove;
<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>

This code doesn't exist in the file you have mentioned when using the Mobile World Template Sad

What I see is:

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

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

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

But removing this does not remove the icon legend bottom left of each forum Sad
Any ideas?

Thanks
What's your website's URL?
(2012-12-06, 02:18 PM)Yaldaram Wrote: [ -> ]What's your website's URL?

Ah, sorry it isn't ready for publishing publicly yet - it's a prototype site being built where we are setting out all the features and sorting out problems (like this one) before installing on the final host.