PDA

View Full Version : Move reputation bar?


conie678
05-24-2013, 08:16 AM
I was wondering how I could move it below the avatar in the legacy post bit?

McGyver
05-24-2013, 08:23 AM
You need to edit the postbit_legacy template and move:


<vb:if condition="$show['reputation']">
<span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}" title="{vb:raw post.username} {vb:raw post.level}">
<vb:each from="reputationdisplay" value="row">
<img class="{vb:raw row.class}" src="{vb:stylevar imgdir_reputation}/reputation_{vb:raw row.posneg}{vb:raw row.imgext}" alt="" />{vb:raw row.rowend}
</vb:each>
</span>
</vb:if>


below the

<vb:if condition="$show['avatar']">
<a class="postuseravatar" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
<img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
</a>
</vb:if>

conie678
05-24-2013, 08:25 AM
Thanks. I will try that now.

EDIT: It worked, but I need more of a gap between the two, how do I do that?

Lynne
05-24-2013, 04:07 PM
You would need to use some CSS to do that. We can't really help with CSS unless we have a link to view the page. (Or, you can do it yourself by using a tool like firebug in firefox to view the CSS)