Re: Making fluid default theme fixed width and centered?
To change it from full width to fixed, edit skin1/main.css
Look for:
#page-container {
min-height: 100%;
position: relative;
}
and change it to:
#page-container { margin: 10pt auto 0; position: relative; width: 960px; min-height: 100% }
|