The code that is actually in your stylesheet right now is a bit different from what you posted:
Code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
Background-Image: URL
(http://www.ontargetairsoft.com/zenC/includes/templates/ontarget/images/background.gif);
background-repeat: repeat;
}
Just removing the linefeeds from this makes it work again, but for good form you should also change it to this:
Code:
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-image: url(../images/background.gif);
background-repeat: repeat;
}
The "url(../images/" means that it will start from the current template in the current shop root directory, so if you copy your site to your local pc for testing it will still work. The full address you have will only work when you are on that address.