PDA

View Full Version : [REZOLVED]Postbit_legacy Reputation display


Popa Andrei
10-23-2011, 02:09 PM
Hello all vbulletin.org users and staff.
I am making this post in the hope that someone will help me with mi little isue.
I changed a bit the postbit_legacy userinfo display mode and i added for example to the reputation icons in the front the text Reputation but the problem is the the text appear with a characther in the front of the others info.
Here is the source i use and the link to a random page in the forum.
<div class="post_field"><span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}"><dt>Reputation</dt><dd>{vb:raw post.reputationdisplay}</dd></span></div>
http://forum.elitegamers.co/introductions/51-7zeros_introduction.html

Thanks in advance!

Lynne
10-23-2011, 04:59 PM
That is because of this CSS:
.postbit_reputation { clear: both; display: block; padding: 0 0 0 3px;}
So, either change the CSS or get rid of the class surrounding it.

Popa Andrei
10-23-2011, 05:29 PM
thanks a lot.Indeed that was.
Changed the css and now it linned up with the others.
Regards.