I am using the LESS styling language.
Consider the following CSS:
.side-bg { background:url(../img/layout/side-bg.jpg) top no-repeat; }
Try using string interpolation for things like this. Look for “variable interpolation” in docs.
@base-url: "http://assets.fnord.com"; background-image: url("@{base-url}/images/bg.png");