MyBB Community Forums

Full Version: Different Board looks per board, and how to remove icon legend?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I got a couple of questions Blush

I have one style of boards for a set of boards, i.e

http://i46.tinypic.com/jkexlc.png

But I would like another set of boards in another category that are different. Do I need to call up ids? I hope somebody understands this!

Also; how do I remove the Forum Contains New PostsForum Contains No New PostsForum is Locked? Thanks C:
For how to remove "Forum contains". Go to ACP>Themes & Styles>Templates>YOUR THEME>Index then remove the following code.

<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>

For the boards.

I'm not sure what you are on about.
Thanks so much! I also figured out the different boards, solved <3