Original topic: http://mybbarena.it/showthread.php?tid=51&pid=94#pid94
We download the image at the bottom of the topic and we upload in "/images" folder
Go to Theme/template/your Theme/global.css and add:
Go to Theme/template/your template/postbit template/postbit
to look for this:
and we add at the attribute "class" of the first line this:
so as to get:
Go to Theme/template/your template/postbit template/postbit_classic
to look for this:
and we add at the attribute "class" of the first line this:
so as to get:
The effect get will be:
![[Image: guida1.png]](https://camo.mybb.com/4dad269bf7068a9a0ecb2e3d6b46ec674795cc5e/687474703a2f2f7332322e706f7374696d672e6f72672f676d616d6a616838312f6775696461312e706e67)
![[Image: guida3.png]](https://camo.mybb.com/71b9ce805cdd3ee692e0942f5bc265b53b73aa93/687474703a2f2f7332322e706f7374696d672e6f72672f356e7a643133736d702f6775696461332e706e67)
![[Image: guida_2.png]](https://camo.mybb.com/8c0a248dbb558c846af01f47c8ebaea7ec7bbac6/687474703a2f2f7332322e706f7374696d672e6f72672f757267666c337139642f67756964615f322e706e67)
We download the image at the bottom of the topic and we upload in "/images" folder
Go to Theme/template/your Theme/global.css and add:
.classic4, .classic3, .classic6 {
background-repeat: repeat-x !important;
background-image: url('images/staff_postbit.png') !important;
}
.normal4, .normal3, .normal6 {
background-repeat: repeat-x;
background-position: top;
background-image: url('images/staff_postbit.png');
}
Go to Theme/template/your template/postbit template/postbit
to look for this:
<td class="trow1 {$unapproved_shade}">
<table cellspacing="0" cellpadding="0" border="0" style="width: 100%;">
<tr>
<td class="post_avatar" width="1" style="{$post['avatar_padding']}">
{$post['useravatar']}
</td>
<td class="post_author">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</td>
and we add at the attribute "class" of the first line this:
normal{$post['usergroup']}
so as to get:
<td class="normal{$post['usergroup']} trow1 {$unapproved_shade}">
<table cellspacing="0" cellpadding="0" border="0" style="width: 100%;">
<tr>
<td class="post_avatar" width="1" style="{$post['avatar_padding']}">
{$post['useravatar']}
</td>
<td class="post_author">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</td>
Go to Theme/template/your template/postbit template/postbit_classic
to look for this:
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
{$post['useravatar']}<br />
{$post['user_details']}
</span>
</td>
and we add at the attribute "class" of the first line this:
normal{$post['usergroup']}
so as to get:
<td class="classic{$post['usergroup']} {$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
{$post['useravatar']}<br />
{$post['user_details']}
</span>
</td>