How to Remove the Double Border
August 15, 2007
This mod is relatively easy, but nonetheless might be asked down the line. Open up your style.css file, and find the following piece of code:
#wrap {
background: #FFFFFF;
width: 920px;
margin: 10px auto 10px;
padding: 0px 20px 20px 20px;
border: double #C0C0C0;
}
Simply remove the line that defines the border for the #wrap container. Your new code should look like this:
#wrap {
background: #FFFFFF;
width: 920px;
margin: 10px auto 10px;
padding: 0px 20px 20px 20px;
}


