Home Web Development cupofcoffee wordpress template background image correction

cupofcoffee wordpress template background image correction

1532
0

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.

Previous articleHow to setup a Podcast on your website
Next articleFieldset Rounded Corners – CSS HTML

LEAVE A REPLY

Please enter your comment!
Please enter your name here