Status
Not open for further replies.

Goob3r

Active Member
156
2009
3
0
This image tells you what I am in need for!

8waarm.png
How do i do this? I'm willing to pay if you can do it yourself on my site!
Contact me on MSN:
Goob3rSales@hotmail.com
 
4 comments
Theres a modification which you can download that does that, you can download it here, however if you don't have a vBulletin.org account you can request the modification in this thread.

Thread Moved (vBulletin related problems belong in the vBulletin support section).
 
Add this to additional CSS.
/* ***** postbit ***** */
.postbit {
border: 1px solid #ff6101;
margin: 3px 4px;
padding: 2px;
color: #ff6101;
background: #1b1b1b;
font-size: 10px;
}
Then in postbit, find every '<div>'
And change it to : <div class="postbit">

For example:
Before:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>

After:
<if condition="$post['joindate']"><div class="postbit">$vbphrase[join_date]: $post[joindate]</div></if>

Of course edit the colors on CSS to match your skin.

Enjoy
 
Add this to additional CSS.

Then in postbit, find every '<div>'
And change it to : <div class="postbit">

For example:
Before:
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>

After:
<if condition="$post['joindate']"><div class="postbit">$vbphrase[join_date]: $post[joindate]</div></if>

Of course edit the colors on CSS to match your skin.

Enjoy

Lul, thanks for using my example. <3
 
Status
Not open for further replies.
Back
Top