How to widen my forum

In the styles additional css (bottom of the style manager)
find and replace:

Code:
#wrapper {
width:840px;

with this:

Code:
#wrapper {
width:100%;
 
The original code you said would be in the additional css isn't..

Code:
/* ***** styling for 'big' usernames on postbit etc. ***** */
.bigusername { font-size: 14pt; }

/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }

/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }

/* ***** de-emphasized text */
.shade, a.shade:link, a.shade:visited { color: #777777; text-decoration: none; }
a.shade:active, a.shade:hover { color: #FF4400; text-decoration: underline; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }

/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }

.sitenav {
background:#235167 url(images/sleekpassion/gradients/nav_x.gif) repeat-x top left;
}

.pagebg {
background:#FFF url(images/sleekpassion/gradients/page_bg.gif) repeat-x top left;
}

.leftside {
background:#235167 url(images/sleekpassion/gradients/page_ls.gif) repeat top;
}

.rightside {
background:#235167 url(images/sleekpassion/gradients/page_rs.gif) repeat top;
}
 
Back
Top