I want to make a postbit like Zachary's site. Like there is a bevel kind of border with the posts, reputation, etc.
Printable View
I want to make a postbit like Zachary's site. Like there is a bevel kind of border with the posts, reputation, etc.
You can doso by using the <fieldset> and <legend> tags :)
VBulletin n00b here, so I would do something like this:Quote:
Originally Posted by Zachery
PHP Code:<if condition="$post['age']"><legacy><div class="postbit">$vbphrase[age]: $post[age]</div></legacy></if>
Quote:
Originally Posted by bfoot045
Edit Postbit Templates,HTML Code:<fieldset><legend>PostBit stuff</legend>
<div class="smallfont" style="text-align: left;">
<div>stuff: stuff</div>
</div>
</fieldset>
postbit or postbit_legacy
Use something like this:
HTML Code:<fieldset><legend>PostBit stuff</legend>
<div class="smallfont"> <br />
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
<div>$vbphrase[posts]: $post[posts]</div>
<if condition="$show['reputation']"><div>
<if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon]</div>
</div>
</fieldset>