In section 2.2.2, \"CSS and Sass\", I\'m told to put image-url(\'delete.png\')
in my sass. And so I have.
However, it is generating CSS like
<
If you do not have this already, name your css file *.css.scss
(as opposed to .sass
- if you do this, you might need to adjust the syntax of some statements). Then use the image_path
helper instead of image-path
, e.g.:
background-image:url(image_path('delete.png'));
I expect this to solve your issue. If it does not, what is the asset path generated by this approach for you?