Set proSilver to Fixed Width

Submitted by CyberAlien, Apr 2007.
This tutorial shows how to change phpBB 3 proSilver style to fixed width.

To change width you'll have to edit only few lines in css.

1. Open common.css, find this:
Code:
  1. #wrap {  
  2.    padding: 0 20px;  
  3.    min-width: 650px;  
  4. }  
and replace with this:
Code:
  1. #wrap {  
  2.    padding: 0 20px;  
  3.    min-width: 650px;  
  4.    width: 800px;  
  5.    margin: 0 auto;  
  6. }  
2. Open tweaks.css and delete this code:
Code:
  1. * html #search-box {  
  2.    margin-right: 35px;  
  3. }  

Share this tutorial

If you want to show this tutorial to someone else please use following code to link to this tutorial:
HTML Link:
Forum BBCode:
Content of this tutorial may not be published anywhere else without author's permission. Please link to this page instead.