PhpBB3 Styling Tutorial:ProSilver/Subsilver2 Fixed Width

Damien

Seasoned Veteran
Joined
Apr 29, 2007
Messages
3,232
Reaction score
0
FP$
6
Hi, in this tutorial I'll be showing you how to make prosilver and subsilver2 fixed width.

For prosilver open common.css and find:
Code:
#wrap {
   padding: 0 20px;
   min-width: 650px;
}

Change to:
Code:
#wrap {
width: 835px;
margin-left:auto;
margin-right:auto;}

and for subsilver2 open stylesheet.css and find:
Code:
#wrapcentre {
   margin: 15px 25px 0 25px;
}

replace with:
Code:
#wrapcentre {
width: 835px;
margin-left:auto;
margin-right:auto;}

Now the width is the bit you want to edit depending on how wide you want your forum, the margin-left and margin-right are just basically to keep it centered.

Thanks for reading my first tutorial.
 
Back
Top Bottom