Written by Stoker
This little guide will tell you how to set the prosilver style with a fixed width. Then the style will have a fixed with and centered in the middle of screen.
Its only one single edit in a css file.
Open styles/prosilver/theme/common.css
Find:
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
}
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 900px;
margin: 0 auto;
}
And you can use max-width instead. It is good for low resolution browsers.
Save file, upload and refresh your theme and browser.