I have a CoreBundle that contains main css files and images. Now I have a problem when i load an image from css; the image isn't shown.

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

(With a full path it works)

I installed the assets using the command: assets:install web and i can see the image and css files under web/bundles/cmtcore/(css|images).

Here's the file structure inside the core bundle:

  • CoreBundle
    • Resources
      • public
        • css
          • main.css
        • images
          • file.png

And here's how i load the css file into the template:

 {% stylesheets '@CmtCoreBundle/Resources/public/css/*' %}
        <link rel="stylesheet" type="text/css" media="screen" href="{{ asset_url }}" />
 {% endstylesheets %}

Thank you for your help in advance.

link|improve this question

73% accept rate
I have same issue. Trying to solved it by images folder to css, but that didn't work – user257980 Aug 13 '11 at 11:43
feedback

6 Answers

up vote 8 down vote accepted

use the cssrewrite filter from Assetic bundle

In config.yml:

assetic:
    debug:          %kernel.debug%
    use_controller: false
    filters:
        cssrewrite: ~

And then call your stylesheets like this:

 {% stylesheets '@CmtCoreBundle/Resources/public/css/*' filter='cssrewrite' %}
        <link rel="stylesheet" type="text/css" media="screen" href="{{ asset_url }}" />
 {% endstylesheets %}

Oh and don't forget to use assetic:dump

link|improve this answer
3  
My issue with this solution is that symfony tries to find the images at /Resources/public/css/* when it should be looking to /bundles/mybundle/images/ ... any ideas on that one? – Clint Nov 9 '11 at 23:21
1  
cssrewrite is used to rewrite paths to images in css. It doesn't "look for images", it doesn't even know what an image is. – Inori Nov 10 '11 at 8:45
3  
okay, well cssrewrite is rewriting my paths to my images to /Resources/public/css/* When it should be rewriting it to /bundles/mybundle/images/ Do you know of a way to change that in cssrewrite? – Clint Nov 10 '11 at 23:38
It will do that only if you've configured assetic incorrectly. Please make a separate question with your code – Inori Nov 11 '11 at 15:43
2  
Inor - using the default assetic config (which is what you have used above) i am getting the same problem as Clint. css and js files are fine but inside the css file, it looks for images in "../../Resources/Public/css/img" when it should look in "bundle/bundlename/img" ? – Mr Pablo Feb 20 at 14:02
show 4 more comments
feedback

I solved the problem by following the instructions on this site: http://www.craftitonline.com/2011/06/symfony2-beautify-with-assetic-and-a-template-part-ii/

The actual problem is that you reference your bundle resources absolute, but must reference them relative.

1. {% stylesheets filter='cssrewrite' output='css/*.css'
2.    'bundles/blistercarerisikobewertung/css/*'  %}
3.    <link href="{{ asset_url }}" type="text/css" rel="stylesheet" />
4. {% endstylesheets %}

Clear your cache and install your assets again

link|improve this answer
Don't you have to install the assets after every change (even in dev environment) with this method? i'll try it out. – Tobias Hourst Sep 14 '11 at 20:38
@tobias, yes, I just tried this and you do indeed need to install the assets after each change. Eeek. – Clint Nov 9 '11 at 23:16
feedback

I "solved" this by loading the css file differently:

<link rel="stylesheet" href="{{ asset('bundles/cmtcore/css/main.css') }}" type="text/css" media="all" />

This is the way it done in Acme/DemoBundle.

I'll leave this question unsolved because this seems silly.

link|improve this answer
1  
This method works, but it does not use the assetic bundle to load the stylesheet, which means you can't add cool filters like yui_css. – Clint Nov 9 '11 at 22:59
feedback

There was few issues with ccsrewrite:

the CssRewrite filter does not work when using the @MyBundle syntax in AsseticBundle to reference the assets. This is a known limitation.

Here is php version for cssrewrite:

<?php foreach ($view['assetic']->stylesheets(
            array(
                'bundles/test/css/foundation/foundation.css',
                'bundles/test/css/foundation/app.css',
                'bundles/test/css/themes/adapzonManager.css'), array('cssrewrite')) as $url): ?>
        <link rel="stylesheet" href="<?php echo $view->escape($url) ?>" />
    <?php endforeach; ?>
link|improve this answer
feedback

I have a similar problem, and I've looked around for at least a day, and I'm not convinced there's a good practical solution to this problem. I recommend using Assetic to handle javascript and css, and then just putting your images in the docroot of your web site. For example, if you have a css file that references ../images/file.png, just create and images folder under your docroot and put file.png in there. This is definitely not the best theoretical solution, but it's the only one I could find that actually works.

link|improve this answer
feedback

Regarding Yann's answer, actually you don't have to re-install assets after every change if you use the --symlink option.

Note, however, that running the vendors install script will overwrite the symlinks, so you'll need to delete the bundles/* folders and install the assets with the --symlink option again after running the vendors script.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.