MyBB Community Forums

Full Version: New Postbit Style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys!

How can i change or add a url background image to 1) and 2) areas as the picture below showing?

[attachment=28619]

Thank you...
In your postbit_classic template find at 5th line:

<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>

And modify as:

<td class="{$altbg}" width="15%" style="background: url(images/postbitback.png) top left no-repeat;" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>

... and place a backgroung image 'postbitback.png' in your 'images' folder.
I will try. Thank you.