my bad that i didn't catch the wrong syntax the first time:
this line: background-image: url(http://www.tonerdigital.com/wordpress/wp-content/themes/clean-home/images/toner_digital_logo.gif) no-repeat;
is not allowed to have the no-repeat in it;
it has to look like:
background-image: url(http://www.tonerdigital.com/wordpress/wp-content/themes/clean-home/images/toner_digital_logo.gif);
the no-repeat goes into an extra line:
background-repeat: no-repeat;
http://www.w3schools.com/css/css_background.asp
with that correction, the full logo style should look like:
#logo h1 a {
background-image: url(http://www.tonerdigital.com/wordpress/wp-content/themes/clean-home/images/toner_digital_logo.gif);
background-repeat: no-repeat;
width:169px;
height:70px;
float:left;
}
and it should also work with the relative image path:
background-image: url(images/toner_digital_logo.gif);