MyBB Community Forums

Full Version: How to make user info on thread bold/different color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For example:

[Image: YNXef.png]

Where do I change the css settings for this?
you can add code similar to below in global.css (change color value as per requirement)
.post_author_info {
font-weight: bold;
color: #000fff; 
}
Thanks. Do you also know how to change the following:

- Usertitle css
- Post css, my theme background is gray and the normal font is also gray. doesn't look good.
for the post content , find code similar to below in global.css
.post_body {
    padding: 5px;
}

add required color attribute for it , like below (change color value..)
.post_body {
    padding: 5px;
    color: #000fff;
}

for the user title color, add below code in global.css (change color value..)
.post_author {color: #000fff;}

you may also have a background color by using background: colorvalue;