MyBB Community Forums

Full Version: How can I change post background color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm looking to see how I can change the background of posts.
Hi,

in the global.css of your theme, add in .post_body the background color or image you want.
(2019-03-04, 10:05 AM)NoRules Wrote: [ -> ]Hi,

in the global.css of your theme, add in .post_body the background color or image you want.

Do I just put color: #1F0CD2; or? I put that and it did not work.
Hi,

you have to add:
background-color: #1F0CD2;

And .post_body should be something like this:

.post_body {
    font-size: 14px;
    padding: 12px 0;
    background-color: #1F0CD2;
}
BTW, remeber to make a hard refresh of your browser to see changes (CTRL + F5)