You need to copy the images to your site and then add all that table code into the postbit or postbit_legacy template.
Find this:
HTML Code:
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->
Change to this (with the correct image paths - you'll have to figure that out yourself after you upload the images - I cannot do that for you):
HTML Code:
<!-- message -->
<table cellSpacing="0" cellPadding="0" border="0" style="width:auto"> <tr> <td style="padding: 0px"><img src="images/quote/admin_01.gif"></td> <td style="padding: 0px" background="images/quote/admin_02.gif"></td> <td style="padding: 0px"><img src="images/quote/admin_03.gif"></td> </tr> <tr> <td valign="top" style="padding: 0px" background="images/quote/admin_04.gif"> <img src="images/quote/admin_05.gif"></td> <td style="padding: 0px; background-color: #ffffff" bgColor="#ffffff">
<div id="post_message_$post[postid]">$post[message]</div>
</td> <td style="padding: 0px" background="images/quote/admin_06.gif"></td> </tr> <tr> <td style="padding: 0px"><img src="images/quote/admin_07.gif"></td> <td style="padding: 0px" background="images/quote/admin_08.gif"></td> <td style="padding: 0px"><img src="images/quote/admin_09.gif"></td> </tr> </table>
<!-- / message -->