MyBB Community Forums

Full Version: Classic postbit - profile background color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i would like to change the color of the profile background abit.
See here: [attachment=29861]

How can i do that?
In postbit_classic template change:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
	<tr>
		<td class="{$altbg}" width="25%" valign="top" style="text-align: center;">
to:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">
	<tr>
		<td class="{$altbg}" width="25%" valign="top" style="text-align: center; background-color: red !important;">
Only <td> is changed but I included more so you can see which one should be edited in custom theme because you didn't post own code.
Thank you, thats all i did need.
For anyone else, change the red into #ffffff to use any color/-codes. Wink