MyBB Community Forums

Full Version: Custom thead colors? (Forum titles)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, i've searched all over google for it and found nothing working (at least for the latest mybb version), i found how to edit thread with xthreads but not how to make custom forum titles.

I need something like this:

[Image: R0t6huv.png]

A way to edit an specific area of my forum, how?

Thank you!
I think you can use html to style the forums, something like

<span class="red">Oficiais - (Postados pela equipe id820)</span>

then you can add the .red class to your global.css

.red {
    color: #ff0000;
}

Maybe I'm wrong but you can try it.
Holy crap, it worked! I cant believe it was so simple, and i just spent 3 hours trying to work on it, hahaha. Thank you very much mate! Smile

I added an hover effect aswell;


.red {
color: #ff0000;
}
.red:hover {
color: #ffffff;
}

Thanks!
No problem! ^^

P.d.: I think you can use it on descriptions too Toungue.
Really nice, in couple days i will try to customize the area title hover effect,

[Image: w4n0yHE.png]

I found this tutorial and all i have to do is improve it;

http://myskins.org/Thread-Multiple-Color...Thead-MyBB

For now it's awesome, thanks again eNvy.
Hey mate, i got a diferent problem now. The forum title is red, alright, but the threads are using the default "A link" color, can i make custom colors for specific areas?

[Image: aDeBAiY.png]

I need everything red there, thanks again!
i would suggest something like this: http://community.mybb.com/thread-185097-...pid1193421

then you can have css like below (where fid=1)....

.cat_1 .trow1 a:link {
    color: #ff0000;
}

.cat_1 .trow1 a:visited {
    color: #ff0000;
}

.cat_1 .trow1 a:hover {
color: #ffffff;
}