MyBB Community Forums

Full Version: Postbit background color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hey guys,

I'd like to change the postbit background color, but the css doesn't seem to work.

I tried: .post_content {background: #FAFAFA !important;}

.post_body does work, but not what I want.

Cheers
Have you hard refreshed after you made CSS change?
Ctrl+F5

MikeInToshx

Yes of course.
in the postbit_classic template, earlier you have added leftcol class. just like that you can add class rightcol
to code like below and apply required background property for it through global.css
<td class="{$altbg}" valign="top">

can be changed to :
<td class="{$altbg} rightcol" valign="top">

earlier thread for reference : changing left side post background
in global.css find and change background color
.trow1
.trow2
.leftcol

MikeInToshx

Ahh yes, I had a feeling it had to be somewhere there aswell.

Cheers :-)