MyBB Community Forums

Full Version: Change description colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i change the colour in the description field of a forum?
Alright so i suppose you are talking about the forum bit, note that this changes also the background behind the title of the forum and the subforums list.

In Admin CP > Template > Modify / Delete > Expand > Forum bit templates > forumbit_depth2_forum

find
<td class="{$bgcolor}" valign="top">
<strong><a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></strong> {$viewscount} <div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>
</td>

now in Admin CP > Themes > Modify / Delete > Edit
Under Adittional CSS create a new class and replace {$bgcolor} in the previous code with its name.
And Zaher What about this ...
[attachment=5637]

Thank You.
Go into the "postbit_author" templates and expand them, then edit the "offline" and "online" ones. That's what you're after.
Mano Wrote:And Zaher What about this ...


Thank You.

Those normaly uses the smalltext class.. you can create a new class and use it in the postbit_author_user instead of smalltext, and in case you dont want post:x to be styled by this new style you can create a new span around the part you want with the new class

<span class="newclass">
{$lang->postbit_group} {$usergroup['title']}<br />
	{$lang->postbit_joined} {$post['userregdate']}<br />
	{$lang->postbit_status} {$post['onlinestatus']}{$post['replink']}<br /></span>
thanks a lot.