MyBB Community Forums

Full Version: Make forum wider? $$$
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys!
I know how to do it via global.css
But I use image for header and footer, so when I change width of it, in global.css it's wider but header and footer are the same.

When I try to edit header and footer, to be same px as width of forum, it looks likes orange.


Anyways, if anyone would be able to help, I will donate some $$.
forum url please
Okay so you have a class of container for the whole thing. The container has a width of like 980px. There is no min-width or max-width defined. Set those then set width to a percentage.

Like maybe try doing in the css for Container:

.container {
min-width: 980px;
max-width: 1200px;
width: 90%;
}
(2012-08-18, 12:49 AM)LordJashin Wrote: [ -> ]Okay so you have a class of container for the whole thing. The container has a width of like 980px. There is no min-width or max-width defined. Set those then set width to a percentage.

Like maybe try doing in the css for Container:

.container {
min-width: 980px;
max-width: 1200px;
width: 90%;
}

Not working.
Still need help.
Thanks in advance.
Will donate if you help me.
In global.css, from the dropdown menu, choose header and then modify its width according to the width of the container.