MyBB Community Forums

Full Version: changing left side post background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hey,

Is it possible to change the background color of the post thing on the left?
( see the image marked in yellow )

[attachment=29560]

MikeInToshx

Lol, 20,000 views in 2 days.

Nobody knows? Is it possible?
find code like below in the postbit_classic template of the theme
<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>

add a new class leftcol like below

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

edit : also modify code like below. that is, change class="{$altbg}" to class="{$altbg} leftcol"
<td class="{$altbg}" style="white-space: nowrap; text-align: center; vertical-align: middle;"><span class="smalltext">{$post['postdate']} {$post['posttime']}</span></td>

and add required background color to class .leftcol through global.css

MikeInToshx

Thanks, as usual Wink

The edit made it complete Smile Perfect.

Cheers!