MyBB Community Forums

Full Version: Is there anyway to change postbit color ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello dear MyBB lovers...
I want to change postbit color...
But not change the forum color...
In this picture, gray color is the same with postbit and forum...
For example; i want to change only postbit color to black...

How can i do that ????

[Image: 29375.jpeg]


Thanks:....... Toungue
Open the "postbit" template and find this code (it's after all of the User Info Stuff)

<td class="$altbg" width="100%" valign="top">

I'm taking a rough guess here, since I don't have time to do it myself, but change:

class="$altbg"

To:

style="background-color: #000000; color: #FFFFFF;"

And it should work.

It'll change the background to black and the text to white.
Code:
<td class="$altbg" width="100%" valign="top">

Should i change <td class="$altbg" width="100%" valign="top"> to <td style="background-color: #000000; color: #FFFFFF;" width="100%" valign="top">

is that true ???
Yes, that should change the post message area.

If you'd like to change any other area, let me know and I'll post up the codes.
Thank you Ryan....