MyBB Community Forums

Full Version: Subforum buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Alright so I have a forum and I want to set the subforums in columns like here:

[Image: 1zb5rhf.jpg]

So,I have a server and I want to make that subforum look like in that image (with Gametracker & steam buttons).
How can I do that?
Big Grin

(I don't know if you can say,but english isn't my first language,so I'm sorry if I made any mistakes)
Go to: ACP > Templates > Select Your Theme's Template Set > Forum Bit Templates > forumbit_depth3 > Edit > Replace all with the following code:
<li>{$statusicon}<a href="forumdisplay.php?fid={$forum['fid']}">{$forum['name']}</a></li>

Go to: ACP > Templates > Select Your Theme's Template Set > Forum Bit Templates > forumbit_subforums > Edit > Replace all with the following code:
<br />{$lang->subforums}<br /><ul class="columns">{$sub_forums}</ul>

Go to: ACP > Themes > Select Your Theme > global.css > Edit Stylesheet in Advanced Mode > Add the following at the end of Stylesheet.
.columns 
{
list-style: none; 
margin: 0; 
padding: 0;
}

.columns li 
{
width: 50%; 
float: left;
}

--- DONE! Smile