MyBB Community Forums

Full Version: Description color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I change the description color in each forums?
<span style="color:red;">Description</span>
(2011-06-02, 11:59 PM)Malcolm. Wrote: [ -> ]
<span style="color:red;">Description</span>

Where do I find that?
That's what you set the forum description as.
If you want the same color for every forum description, you can make the following changes.

ACP >> Templates & Style >> Templates >> yourtheme

In forumbit_depth2_forum and forumbit_depth2_cat find:
{$forum['description']}

Replace with:
<span class="forumdesc">{$forum['description']}</div>

ACP >> Templates & Style >> Themes >> yourtheme

In global.css add:
.forumdesc {
color: #000000;
}

Change the color to whatever you want.