MyBB Community Forums

Full Version: Making Forum Description text smaller/another color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to do this?
Yes, you can use html codes in forum description.
I would like a global why so I dont need to do that. Like the text is automatticly small and a lighter grey color.
ACP -> Templates -> Modify/Delete -> Expand your template set -> Expand forum bit templates -> forumbit_depth2_cat

In that find,
<span class="smalltext">{$forum['description']}{$sub_forums}</span>

And change it to,
<span class="forum_desc">{$forum['description']}</span><span class="smalltext">{$sub_forums}</span>

And finally in the custom CSS section of your theme put
.forum_desc{
font-size: 9px;
color: #cccccc;
}
and tweak those values as needed.
Hello is this possible for myBB1.4?