Set proSilver to Fixed Width
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:
To change width you’ll have to edit only few lines in css.
1. Open common.css, find this:
Code:
- #wrap {
 -   padding: 0 20px;
 -   min-width: 650px;
 - }
Â
and replace with this:
Code:
- #wrap {
 -   padding: 0 20px;
 -   min-width: 650px;
 -   width: 800px;
 -   margin: 0 auto;
 - }
Â
2. Open tweaks.css and delete this code:
Code:
- * html #search-box {
 -   margin-right: 35px;
 - }
Â
Share this tutorial
Â