very nice. i, like Danny, used template conditionals to make this happen. installed.
i modified the template code slightly so i could apply different images based on a chosen style. i have multiple styles that use the same image...but different background colors based on the colors of the style chosen.
this is what i did:
changed
Code:
<img src="<if condition="$show['customstatusicon']">$forum[customicon]<else />$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif</if>" alt="" border="0" />
to
Code:
<img src="<if condition="$show['customstatusicon']">$stylevar[imgdir_statusicon]/forum/$forum[customicon]<else />$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif</if>" alt="" border="0" />
then created a directory in "images/statusicon" called "forum" for each statusicon directory i specified in the style options (under image paths) and placed my images there. then, for each forum, in the options, i just specified the file name.
i hope you dont mind me posting this in this thread.