Shinjo |
05-31-2009 02:53 PM |
Quote:
Originally Posted by 80's
(Post 1819415)
I didn't understand. What should I do with postbit_legacy template?
|
What hes trying to say is, look for all the things you want to box. For instance:
Find:
Code:
<if condition="$post['age']">
And in the end it should look like this:
Code:
<if condition="$post['age']"><div class="pbit"><div>$vbphrase[age]: $post[age]</div></div>
The red text is what you added in yourself. So basically, you want to also find other things like Join Date, Posts, etc.
For posts, Find:
Code:
$vbphrase[posts]: $post[posts]
Make it turn into:
Code:
<div class="pbit"><div>$vbphrase[posts]: $post[posts]</div></div>
If you need anymore help, just ask.
|