How do I shrink the postbit font size in the post_thanks_postbit section for $vbphrase[post_thanks_user_says]
I'd like it to be much smaller than the post itself.
EDIT: I found part of the cure in post_thanks_postbit shrinking the list of user names in the tag.
Code:
<div class="smallfont">$post[post_thanks_bit]</div>
Now to get that to work on the line, "The Following 2 Users Say Thank You" - I don't know what the hell I'm doing, but I did it...
Code:
<td class="alt2" style="padding:0px"><div class="smallfont">
<if condition="$post['post_thanks_amount'] == 1">
<phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase>
<else />
<phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase>
</if></div>
</td>