MyBB Community Forums

Full Version: How to change forum icons?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://gamingshift.x10.mx/index.php

If you visit my forum (link provided above) you will see:

[Image: on.gif]: when new posts are awaiting.
No image: When no new posts.

Instead of having the blue mens being there i wanted:

[Image: gamepadicon.png]: When new posts are awaiting.
No image: When no new posts but how do you change it.

I edit:

[Image: V4IqY7K.png]

then this comes up:

[Image: ocXNc9T.png]

What do i replace it with?
Here

Note the slash before the type and image format.

Your theme - INDEX

<img src="{$theme['imgdir']}/on.gif


<img src="{$theme['imgdir']}/off.gif


<img src="{$theme['imgdir']}/offlock.gif

<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>
That is for the index, i want something else as clearified in my post.

Still not sure of this.