Quote:
Originally Posted by smoknz28
Hi there...I've installed this, but I'm looking over the code...and would like to know....I had installed a different hack not too long ago that was very simple and changed everyone's sig to use small font. I really like this cause some of my members have a bit much of wording that I really don't mind so long as the code forces all their text in their sig to small font.
I'm no coder by ANY means...so I'm not really sure here....but I do see the change that was made in my previous postbits.
|
Try this:
PHP Code:
<if condition="$post['signature']">
<!-- sig -->
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<div class="smallfont" valign="bottom">
<fieldset><legend>$post[username]'s Sig:</legend>$post[signature]</fieldset>
</div>
<!-- / sig -->
</if>
Or this one:
PHP Code:
<if condition="$post['signature']">
<!-- sig -->
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<div valign="bottom">
<span style="font-size:small;">
<fieldset><legend>$post[username]'s Sig:</legend>$post[signature]</fieldset>
</span>
</div>
<!-- / sig -->
</if>
Please note I haven't tested the above codes....
Thanks