MyBB Community Forums

Full Version: Change Post Font Color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Me again!!

How do i change the font color of the posts. I want it to white.
I know I have to change something is global.css but where.
Please explain step by step.
[Image: untitled_11.jpg]
Admin > Templates & Style > Themes > **YourTheme** > Edit Stylesheet: Advanced Mode

search for:

.post_body {
padding: 5px;
}

Then replace it with this.

.post_body {
color: #fff;
padding: 5px;
}


Please report back! Smile
If you want it to display on profiles and that too, you'd need to search for the table div/class in the css and replace add

color: #FFFFFF;

in the right css box(: That's how I would do it anyway.
I made a mistake in my code, I apologize. Update the following:

color: #fff;

Please inform me if it works. Smile
ok i will inform you. let me check
Not working I need it my post color white by default. Where I go step by step.
Did you read my first post on this thread? That should make it white by default.
I think it's not #fff
but it should be #FFFFFF
no #fff will work just fine you just need to put it in the right place.
(2011-01-10, 07:06 PM)Derek M. Wrote: [ -> ]Admin > Templates & Style > Themes > **YourTheme** > Edit Stylesheet: Advanced Mode

search for:

.post_body {
padding: 5px;
}

Then replace it with this.

.post_body {
color: #fff;
padding: 5px;
}


Please report back! Smile

This should work as i just tried it. if you want to change all the text to white
change it in body