Kreativmind |
01-05-2008 07:56 AM |
Quote:
Originally Posted by Berker Unluer
(Post 1415595)
Forum widht 880
|
Well in your admincp
Styles & Templates / Style Manager / Visions Green / All style options / Visions Green
Edit 1
Main Table Width (pixels or percentage)
(This is the width of the table that contains all your vBulletin content) 880
Additional CSS Definitions
find this code
Code:
#side_borders_inner {
border-left: 1px solid #626262;
border-right: 1px solid #626262;
width: 790px;
margin: 0px auto;
}
#side_borders_outer {
border-left: 4px solid #EBEBEB;
border-right: 4px solid #EBEBEB;
width: 792px;
margin: 0px auto;
}
Edit the code
Code:
#side_borders_inner {
border-left: 1px solid #626262;
border-right: 1px solid #626262;
width: 880px;
margin: 0px auto;
}
#side_borders_outer {
border-left: 4px solid #EBEBEB;
border-right: 4px solid #EBEBEB;
width: 882px;
margin: 0px auto;
}
and you are done
|