Hi, in this tutorial I'll be showing you how to make prosilver and subsilver2 fixed width.
For prosilver open common.css and find:
Change to:
and for subsilver2 open stylesheet.css and find:
replace with:
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.
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.







