Quote:
Originally Posted by Zylantex
That doesn't seem to make much difference? It's giving me something like this.
Code:
Thanks 4,645
Thanked 7,898 Times in 3,690
Posts
|
first
to make room so the info stays in the field
the stylevars with in your style your working on
search for
postbitlegacy_userinfo_width
it's 200
make it 220
it should be good
but you may need to tweak that # a little to 230 etc
your post_thanks_postbit_info template should be like so.
so the
thanked
and
thanked in x post are not in the same box..
Code:
<vb:if condition="$post['userid']">
<div class="post_field"><dt>{vb:rawphrase post_thanks_thanks}</dt> <dd>{vb:raw post.post_thanks_user_amount_formatted}</dd></div>
<vb:if condition="$post['post_thanks_thanked_times'] == 1">
<div class="post_field">{vb:rawphrase post_thanks_time_post}</div>
<vb:elseif condition="$post['post_thanks_thanked_posts'] == 1" />
<div class="post_field">{vb:rawphrase post_thanks_times_post, {vb:raw post.post_thanks_thanked_times_formatted}}</div>
<vb:else />
<div class="post_field">{vb:rawphrase post_thanks_times_posts, {vb:raw post.post_thanks_thanked_times_formatted}, {vb:raw post.post_thanks_thanked_posts_formatted}}</div>
</vb:if>
</vb:if>
hope this helps