Question:
How do I change the overall width of the forum?
Answer:
You need to modify the #content declaration in the stylesheet.
You may need to add a further wrapper to contain the forum.
To add the wrapper, you can do something like this:
#forumwrapper{
width:780px;
text-align:left;
min-width: 500px;
margin-left:auto;
margin-right:auto;
padding: 5px;
border: 1px gray solid;
background-color: white;
}
The code above sets the width to 780 pixels and centers the forum.
Now, in the HTML Header template, find
<body>
and under it, add
[code] <div id="forumwrapper">.
Then, in the HTML Footer Template, find
[code] </div>
and add another
[code] </div>
Category:Templates Category:Forums
