- To change entire board width...
ACP>Look & Feel>your_skin>CSS tab>ipb_style.css
/* ELEMENT STYLES */
Add the following right below:
#ipbwrapper{
margin: 0 auto;
width: 80%;
}
Change 80% to your desired width.
- To change all board width, but header...
/* GENERAL CONTENT */
#content {
padding: 20px 15px 0px 15px;
clear: both;
and add below:
margin: 0px auto; width: 80%;
so it looks like this:
/* GENERAL CONTENT */
#content {
padding: 20px 15px 0px 15px;
clear: both;
margin: 0 auto;
width: 80%;
}
Change 80% to your desired width.















