Within my CSS stylesheets, I often have code snippets like the following:
#defaultCountdown span.countdown_section {
color:#fff;
padding:7px 15px!important;
margin-bottom:2px;
font-weight:300;
background:url(../img/bg-white.png);
text-align:center
}
I've noticed that in the code snippet above, there's a URL specified for the background image. How should I go about serving this image via static files?
Thank you.