change the width of the forum?

cpz

New Member
I go to Styles & Templates>Style Manager>All styles options>Sizes and Dimensions

I tried changing Main Table Width (pixels or percentage)to px but when i change that only the header width changes.

So how do I get this right!?
 
cpz said:
I go to Styles & Templates>Style Manager>All styles options>Sizes and Dimensions

I tried changing Main Table Width (pixels or percentage)to px but when i change that only the header width changes.

So how do I get this right!?

You should check the header template to see why your changes are not working, I think. If its a custom style, it may be hard coded in there.
 
maybe you can change in admin cp style & templates, style manager manager, click the dropdown menu on the right of your style(whisper) edit fonts/colors ect. click on style vars and maybe change the main percentage to 100% or whatever works. the sizes and dimensions are there play with them till you get what you want. hope this helps or works.
 
The width is hard coded in the Main CSS ... bottom of the page bottom box

I just checked it,

#wrapper is the one you need to change...
 
Thnx for the replies.. I tried to change it in StyleVars..
The standard is 100% when i change it to px it just edits the header.

@bluescorpion

I know some basic CSS. Where can i edit the Main CSS?

Edit:
I found it tyvm
 
I already told you.

Go Styles&Templates ->MainCSS,

bottom box, look for #wrapper block:

HTML:
#wrapper {
width : 756px;
margin : 0 auto;
background : #111111;
text-align : left;
}

and change it to whatever width you want.
 
Back
Top