MyBB Community Forums

Full Version: Forum is too wide..how to shrink it a bit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like, when I go to post something on a thread, the textbox spans the entire freakin width of the screen hehe. Is there a way to just >--< shrink it a bit and bring everything in together?
You mean change the theme from fluid to fixed? If so, it's simple.

ACP >> Templates & Style >> Themes >> [Your theme] >> global.css

Edit the container width from 100% to... 976px or whatever width you desire.
Thank you!

P.S If you do this, your forum will be aligned to the left.

To center it, put this code in container's Extra CSS Attributes (the box on the right):

margin-left: auto;
margin-right: auto;

That should center your forum and if you make it like 1200px as the width it works out well Smile

Thanks Kazuto!!
Glad to be of help. Smile