MyBB Community Forums

Full Version: How to re-size forum?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to make the white container smaller, and add some content to the right of the forum, but not off to the side on the blue area, how would I make the forums smaller and add some content to the right of the black line?
http://i41.tinypic.com/qsl55j.png
first at all you have to go to your styles and templetes, select your style and on styles tab go to global.css, edit on advanced mode.

Search for container and content, to set your own preferences about stylization, then add a 2 new classes.

.forum{
width: 70%;
}
forum_sidebar{
width: 28%;
}

Then go to your index template and search for:

{$forums}

replace with

<div class="forum"
{$forums}
</div>
<div class="forum_sidebar">
<table border="0">
<tr class="thead">
<td>
YOUR TITLE HERE
</td>
</tr>
<tr class="trow1">
<td>
YOUR CONTEN HERE
</td>
</tr>
</table>
</div>

Maybe this have to change in some ways, but it's so easy to add this on your forum, but i do it quickly and no time to test it xD.

If you have some trouble with this i review and told you how to do it, but i thing this have to work.