MyBB Community Forums

Full Version: change size of forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i change the width of my forum do the size of this

wweforums.net
AdminCP > themes > global.css >

Change the width of the #container to looking at their css 100%. They though have additional divs wrapped around their content. So no clue how it looks on the default set up when you do that.
#container {
background: transparent;
color: #c9c9c9;
margin: 0 auto;
padding: 0;
text-align: left;
height: 300%;
min-height: 100%;
position: relative;
width: 100%;
}


is that it? and actually how bout something like this

http://oi55.tinypic.com/24fwls6.jpg

a width like that
Well it all depends on what you wish.

You could work % or px (or anything else).

% scales with the width of the persons screen resolution which has its benefits, one big disadvantage i always have with it is that rescaling the browser window makes the page.. look awful in everyway.

A way to fix that is say:

width:100%;
min-width: 960px;

(as an example).

In the end its up to you what you wish use px for a fixed width or % for something that scales depending on their screen resolution.
ok i will try to figure it out thanks