JGreig
10-17-2009, 10:00 PM
This will add a nice background and border to the postbit_legacy information such as join date, posts, reputation etc.
Styles & Templates >> Postbit templates >> postbit_legacy >> Find:
<if condition="$post['joindate']"><strong>$vbphrase[join_date]:</strong> $post[joindate]</if>
Change to:
<if condition="$post['joindate']"><div class="userinfo"><strong>$vbphrase[join_date]:</strong> $post[joindate]</div></if>
Save and now go to All Style Options for your template and add the following code to your CSS:
.userinfo {
background: #e6ebf0;
border: 1px solid #a2a2a2;
border-left-width: 3px;
text-align: left;
padding: 5px;
margin-bottom: 2px;
}
You can also add the following code around anything in the postbit_legacy template:
<div class="userinfo"></div>
Example:
<if condition="$post['age']"><div class="userinfo"><strong>$vbphrase[age]:</strong> $post[age]</div></if>
<div class="userinfo">
<strong>$vbphrase[posts]:</strong> $post[posts]
</div>
-------------------------------------------------------
I hope I explained it well, if not I am sorry, this is the first time I have posted something like this. My apologies in advance.
Styles & Templates >> Postbit templates >> postbit_legacy >> Find:
<if condition="$post['joindate']"><strong>$vbphrase[join_date]:</strong> $post[joindate]</if>
Change to:
<if condition="$post['joindate']"><div class="userinfo"><strong>$vbphrase[join_date]:</strong> $post[joindate]</div></if>
Save and now go to All Style Options for your template and add the following code to your CSS:
.userinfo {
background: #e6ebf0;
border: 1px solid #a2a2a2;
border-left-width: 3px;
text-align: left;
padding: 5px;
margin-bottom: 2px;
}
You can also add the following code around anything in the postbit_legacy template:
<div class="userinfo"></div>
Example:
<if condition="$post['age']"><div class="userinfo"><strong>$vbphrase[age]:</strong> $post[age]</div></if>
<div class="userinfo">
<strong>$vbphrase[posts]:</strong> $post[posts]
</div>
-------------------------------------------------------
I hope I explained it well, if not I am sorry, this is the first time I have posted something like this. My apologies in advance.