MyBB Community Forums

Full Version: Forum Description Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I would like to edit the forum description color.

Can you tell me what I need to find and edit in global.css?
In the forumbit_depth2_forum and forumbit_depth2_cat templates, find:
<div class="smalltext">{$forum['description']}
Replace with:
<div class="forumdesc">{$forum['description']}

Add to global.css:
.forumdesc {
color: #000;
}
Maybe, use this css instead (keeps it in smalltext):

.forumdesc {
color: #000;
font-size: 11px;
}