Page 1 of 1

site width

Posted: Sun Mar 12, 2006 10:17 pm
by jeroen
Can anyone tell me how to adjust the wdth of the site I'm creating?
So not just the header or menu or footer but the complete site.

Thanks in advance

Re: site width

Posted: Mon Mar 13, 2006 1:03 pm
by jelle
Search for min-width or max-width if you built on the default template/css.

Re: site width

Posted: Tue Mar 14, 2006 8:24 am
by amygdela
add an extra div around everything:




your contents here


Re: site width

Posted: Tue Mar 14, 2006 10:03 am
by jelle
Avoid px sizes when you can. Unless you have a banner image that is 800 px wide that you need to size the rest of the site to, there is no need to fix the width to 800 px. But plenty of sites do so anyway, so yo will need to make your own decisions.

Re: site width

Posted: Sat Apr 15, 2006 10:33 am
by trud
It is allready there, you just make a few changes.
Go to the stylesheet named layout.

Fint the div named "pagewrapper":

div#pagewrapper {
        margin: 40px auto;
        max-width: 80%;

Edit the maxwidth or just put
width: whateverwidth;

The pagewrapper is surounding all the other divs, so changes to this will change the width for everything.