MyBB Community Forums

Full Version: Forum Width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Default layout, how do I change the forum overall width.
In version 1.6 all I did was change the css, but this seems to not be working in 1.8.5

? Wink
To change the forum width please continue like you did with mybb 1.6 and edit the css files. You will want to change the following in global.css :

#container {
    color: #333;
    text-align: left;
    line-height: 1.4;
    margin: 0px;
    font-family: Tahoma,Verdana,Arial,sans-serif;
    font-size: 13px;
    min-width: 990px; /* change this */
}

.wrapper {
    width: 85%; /* change this */
    min-width: 970px; /* change this */
    max-width: 1500px;
    margin: auto;
}
Did not do the trick

But had to change #container to

margin: auto, auto;

Now it works, but thanks for the tip