I’m using minify
and now I have css file “style.css”
body{
background: url(image.png);
}
and when making it mini will be in /path/to/min/dir/f=style.css
because of this I want to make the url of backgound full
something like this
body{
background: url({$url}/image.png);
}
and in mimify class make assign or replace just like smarty
to be mimi like this
body{background: url(/path/to/image.png);}
You can’t minify and have dynamic values in it (it is supposed to be for caching).
If you’ve got dynamic URL’s, do it with inline CSS or add CSS to the header in your html/php file, not in the CSS file