in this tutorial i will try to explain it to you for Prosilver.
This tutorial will explain how you can add a sharp cornered border around your forum. it only needs a few adjustements in the CSS.
First you need to change the width of you forum?
Here again the explenaition for Prosilver on how to change the width at first.
Go to: adminpanel > styles > theme's > prosilver > edit
FIND:
- Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
}
REPLACE WITH:
- Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 1000px;
margin: 0 auto;
}
FIND & REMOVE:
- Code: Select all
* html #search-box {
margin-right: 35px;
}
* html .rtl #search-box {
margin-right: 0;
margin-left: 35px;
}
If done correctly, your forum is now 1000 pixels wide, this can be altered to your own wishes.
No we still want that border around our forum, to do that, try this.
Go to: adminpanel > styles > theme's > prosilver > edit
FIND #wrap. (CTRL+F comes in handy)
ADD to #wrap:
- Code: Select all
border-left: 2px solid #777777;
border-top: 2px solid #777777;
border-bottom: 2px solid #777777;
border-right: 2px solid #777777;
background-color: #FFFFFF;
Now im changing the background of the body so i can get a nice contrast.
FIND: html, body.
REPLACE with:
- Code: Select all
html, body {
color: #536482;
background-color: #B9B9B9;
}
If done correctly your forum will look like this now:

Im not responsible for ruined forums/styles
I Hope that the plan comes together.

When you scaled the width of your forum down, you may be getting trouble with the words: Topics, Posts, Last post,.
They wil overwrite each other, and it makes a nasty look.
But this is only when you made your forum really tight, or when you have for example a Dutch translation on it, in Dutch the words are: Onderwerpen, Berichten, Laatste bericht, so thats alot longer. here's the thing you should do when encountering this problem:
Go to: adminpanel > styles > theme's > prosilver > edit
FIND:
- Code: Select all
ul.topiclist dt {
display: block;
float: left;
width: 50%;
font-size: 1.1em;
padding-left: 5px;
padding-right: 5px;
}
- Code: Select all
ul.topiclist dt {
display: block;
float: left;
width: 40%;
font-size: 1.1em;
padding-left: 5px;
padding-right: 5px;
}
- Code: Select all
dd.posts, dd.topics, dd.views {
width: 8%;
text-align: center;
line-height: 2.2em;
font-size: 1.2em;
}
- Code: Select all
dd.posts, dd.topics, dd.views {
width: 10%;
text-align: center;
line-height: 2.2em;
font-size: 1.2em;
}












