PDA

View Full Version : Show Thread Enhancements - Custom User Rank Box in Posts


addamroy
01-25-2013, 11:00 PM
This mod will allow you to create a custom box around your member's user rank images or text under their avatar in posts.

This is done via one simple template edit and a couple CSS entries in your additional.css file.

Step 1 - In your Postbit_legacy template via > style manager > edit templates > Postbit Templates

Find:

<vb:if condition="$post['rank']">


Just BELOW it add:

<div class="badgesbox">
<div class="badgesboxlabel">
<center>
<u><b>
<font color="black">
{vb:raw post.username}'s Badges
</font>
</b></u>
</center>
</div>


Then find:
<span class="rank">{vb:raw post.rank}</span>


And BELOW that add:

</div>


Now open your additional.css template via Style manager > edit templates > CSS templates > additional.css

At the very BOTTOM add:
.badgesbox {
padding-left:4px;
padding-top:1px;
padding-bottom:4px;
margin-right:21px;
margin-bottom:2px;
background-color:#ccc;
}

.badgesboxlabel {
padding-bottom:5px;
}

Now because some may have slightly different size avatars and/or user-rank badges or text, you may have to adjust the
margin-right:21px; value to adjust the box to the correct position.

Also you can change background-color:#ccc; to whatever color you want the box background color to be.

Just a little way to give some more attention to your members who have various achievements or paid subscriptions you have user-rank badges for.

Check out my other Template Modifications for 4.x!

[Postbit-Legacy Hack] Attractive User Info Boxes for Posts (https://vborg.vbsupport.ru/showthread.php?t=309239)

Link Private Forums to thread instead of error message (https://vborg.vbsupport.ru/showthread.php?p=2393460)

Sidebar Anywhere Enhancement - Custom Blocks Per Forum or Page (https://vborg.vbsupport.ru/showthread.php?t=296104)

Change Thread Title Color for Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293431)

Change Background Color for Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293417)

Change Title Color of Specific Forums on Homepage (https://vborg.vbsupport.ru/showthread.php?t=293418)

Thread Starter Image in Postbit for OP (https://vborg.vbsupport.ru/showthread.php?t=295277)

CUSTOM BUTTONS that look like your forum! (https://vborg.vbsupport.ru/showthread.php?t=284005)

Alan_SP
01-29-2013, 01:05 AM
This is template edit, not a mod.