Question

In the html file i can access the images folder using asset function but in my css i am not able to us e images

background-image:url(../images/back.png)

{% stylesheets 'css/*' %}
<link href="{{ asset_url }}" rel="stylesheet" media="screen" />
{% endstylesheets %}

How to fix that

Was it helpful?

Solution

This is something that always puzzles me as well! Anyway there is a cssrewrite assetic filter that should help you to solve this problem detecting and rewriting urls in css scripts (anyway, even using this, you may need to change urls in your css).

OTHER TIPS

I use this:

background-image: url(/bundles/yourbundle/images/pic.png)

Works without cssrewrite filter.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top