pogenwurst wrote:

You should probably use the forum ID instead of forum name, because if there are spaces in the class attribute, each part separated by a space is treated as a separate class applied to the tag, which may or may not cause problems but is kinda funky nonetheless.

Also, instead of <?php echo $cur_forum['forum_name'] ?><?php echo $icon_type ?>, concatenate the variables, i.e. <?php echo $cur_forum['forum_name'].$icon_type ?>.

yeah im a complete php nub but before you even posted i realised the forum ID would be a better idea.

Figured it out, for anyone else wondering, heres how I did it:
Go to index.php
Find (around line 41)

<div class="<?php echo $icon_type ?>"><div class="nosize"><?php echo $icon_text ?></div></div>

Replace with

<div class="<?php echo $cur_forum['forum_name'] ?><?php echo $icon_type ?>"><div class="nosize"><?php echo $icon_text ?></div></div>

Style something in your skin css file with the name
DIV.(topicnamehere)icon and
DIV.(topicnamehere}inew

pretty basic instructions i know, but it should get any curious person on the right foot.

Bump.... really need help w/ this sad

123123 wrote:

i think you want that each topic have diferent icon like in the picture this below:
http://img104.imageshack.us/img104/1268 … d02my2.gif

Yes that is correct

I was wondering if there was a mod to do this or a simple thing I can do in order to achieve this.

What I would like to do is make it so each individual forum has an icon specific to the forum.
If I didnt explain this well enough or you need more info please let me know.