Kroziun |
03-29-2006 03:22 PM |
I think not many people will understand as you did not make it clear what you wanted. Only after looking at the image for a little while it appears you want the "Rep Points: 154" part to be displayed in the postbit.
So, add this to the postbit_legacy (or postbit if not using legacy) template:
Rep Level: $post[reputation]<br>
So it looks like this:
PHP Code:
<if condition="$show['reputation']"><div><if condition="$show['reppower']">Rep Level: $post[reputation]<br>$vbphrase[reppower]: $post[reppower]</if><BR>$post[reputationdisplay]</div></if>
NB: Also add the second <BR> which you can see in capitals if you want the Rep Block image(s) to appear beneath the Rep Power line as in your image.
Hope this helps you. :)
Edit: I forgot to say place bold tags around $post[reputation] if you want it to appear bold as in your image, like this: <b>$post[reputation]</b>
|