Change Whole Width of Template?

forcer

New Member
I downloaded a template from this site... vbstyles blue saint

it comes with a + which is 100% width and a - which is alot less..

i want to use this style but i want it at about 77%...

whenever i change the width from the - normal version it only extends the heading and nav bar, but the forum list doesn't move at all.

i tried it with the + 100% version and the forum list moved in alot and the header and nav bar was further extended.

how can i change it so the actual forumlist is at 77% along with the heading stuff.
 
in the + style do as you did but also try adding:
Code:
width:77%;
to the "page" additional css box aswell.

If that dosen't work set everything back to 100% and try wrapping your forum in a new div

@ the top of header template just below:
HTML:
<a name="top"></a>
add this:
HTML:
<div id="wrap">
then in the footer template ad this just above the javascript:
HTML:
</div>

Now in the additional css section at the bottom of style manager add this:
HTML:
#wrap
{
	width:77%;
	margin:0 auto;
}
 
Back
Top