If you install this template installed on a WordPress site, then you might notice the background header graphic is a little off.Â
You can correct this in the style.css file. Look for this:
#wrapper {
 width: 960px;
 margin: 0 auto;
 background: url(images/img01.gif) repeat-y left top;
}
and make it this:
#wrapper {
 width: 959px;
 margin: 0 auto;
 background: url(images/img01.gif) repeat-y left top;
}
Notice, the background image has been changed to 959px long because that’s the dimension of the actual image itself.
Note: Newer versions of this template may have corrected this issue.