Member's profile help

lanbo

New Member
Right now it looks like this:
m9m5vc.jpg

I need the Thanks and the rep inside a box like the status box. Where do I edit for that? I am using TimeTraveler style (http://www.vbteam.info/3-8-x-premium-styles/21666-vb3-8-2-completevb-timetraveler.html)
 
styles & templates > style manager > "Style you want to edit" > postbit or postbit_legacy template

In your styles Main CSS, add this

Code:
/* ***** define box around postbit information ***** */
.info {
padding-left: 3px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
background-color: #D1D4E0;
border-top: 1px solid #091524;
border-right: 1px solid #091524;
border-left: 1px solid #091524;
border-bottom: 1px solid #091524;
margin-bottom: 2px;
}

Then around the code you want to "box" use

Code:
<div class="info">code goes here</div>

for instance you would find:

Code:
<if condition="$post['age']">$vbphrase[age]: $post[age]</if>

and change it to:

Code:
<if condition="$post['age']"><div class="info">$vbphrase[age]: $post[age]</div></if>

that will surround the age part with one of those boxes.
 
Top