I have trouble referencing images from my .css file in a symfony2 project. I have a main.css in app/Resources/public/css
and my image directory is app/Resources/public/images
.
I include the css sheet like so:
{% stylesheets '../app/Resources/public/css/*' %}
<link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
{% endstylesheets %}
How would I go about referencing images in my css file?