Prosilver Fixed Width
Posted: 26 Jul 2011, 20:02
Prosilver Fixed Width
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:
Replace with:
You can change the width to something else if you want.
And you can use max-width instead. It is good for low resolution browsers.
Save file, upload and refresh your theme and browser.
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.