Knowledge Base

Fixed width prosilver
Article ID: 114
Written By: Thatbitextra
Written On: Wed Dec 05, 2007 8:49 pm
Description: How to make prosilver a fixed width and centered.
Link to this article: Select All
[url=http://www.phpbb.com/kb/article/fixed-width-prosilver/]Knowledge Base - Fixed width prosilver[/url]

Open styles/prosilver/theme/common.css, find:

Code: Select all
#wrap {
   padding: 0 20px;
   min-width: 650px;
}

and change it to:

Code: Select all
#wrap {
   padding: 0 20px;
   min-width: 650px;
   width: 760px;
   margin: 0 auto;
}


Next, go into you Administration Control Panel, click on the "Styles" tab at the top, click on "Themes" under "Style components" on the left, and click on "Refresh" next to the theme/style you have edited.

Simple! :)