Quote:
Originally Posted by yuriy
When a user has 0 reps I will change this to be on register get no points, and as you can see in the image below it shows Reputation: 0 in red color and when theres a rep above 0 it shows Reputation: 15 in green color, I currently have this in my post bit:
|
AFAIK, this can be done with simple conditionals.
ie.
PHP Code:
<span style="color: <if condition="$post['reputation'] > 0">green<else />red</if>">$post[reputation]</span>
Something like that should work..