MyBB Community Forums

Full Version: Making forum smaller.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sorry for the spam but yeh need help.
How can i make my forum smaller in size? thnx
You are going to have to change the CSS, if you are using the stock theme, change the max-width to something smaller.

AdminCP -> Templates & Style -> Your Theme -> Global.css


.wrapper {
    margin: auto;
    max-width: 1500px;
    min-width: 970px;
    width: 85%;
}
I'm using Vienna theme
AdminCP -> Templates & Style -> Your Theme -> Extra.css

Change the width from 90% to something smaller.
#mainwidth {
    line-height: 1.4;
    margin: 0 auto auto;
    text-align: left;
    width: 90%;
}
(2015-09-08, 02:09 PM)thexshadow Wrote: [ -> ]AdminCP -> Templates & Style -> Your Theme -> Extra.css

Change the width from 90% to something smaller.
#mainwidth {
    line-height: 1.4;
    margin: 0 auto auto;
    text-align: left;
    width: 90%;
}

Thanks