MyBB Community Forums

Full Version: Move Forum Description Next to Forum Name
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to move the description for a forum next to the forum name instead of having it below.
Thanks!
In forumbit_depth2_forum, find this:

<a href="{$forum_url}"><strong>{$forum['name']}</strong></a> {$forum_viewers_text}<div class="smalltext">{$forum['description']}{$modlist}{$subforums}</div>

Move {$forum['description']} right after {$forum['name']}</strong></a>.
So it should look like this:

<a href="{$forum_url}"><strong>{$forum['name']}</strong></a> {$forum['description']} {$forum_viewers_text} <div class="smalltext">{$modlist}{$subforums}</div>

There ya go!
Thanks! Worked perfectly!
Glad I could help!