Quote:
Originally Posted by Mr Chad
What i want to do is make the whole box glow, (by changing the images) if there has been any new threads/posts.
a
HTML Code:
<if condition="$forum[statusicon] == old OR lock">
<!-- normal look -->
</if>
<if condition="$forum[statusicon] == new">
<!-- glowing boarder :) -->
</if>
|
easy, just put the regular code in first if and then dont have the second if just change it to <else /> and put the glow of the code closing it with an </if>
or like this
Code:
<if condition="$forum[statusicon] == new">
glow td here
<else />
old td here
</if>