This link shows the problem, as i stuck with almost two weeks…
This link has the question and the required answer.
I have to publish the css files and images in a same directory. But now it is published in different directories with different hash code folders. But always the images are published in the same folder(like d30abc7e).
So now i loaded the images in css like this.
background: url(../d30abc7e/search.png) right no-repeat;
This is not the right one.
If i publishes the images and css in same directory, then this code will be like this
background: url(search.png) right no-repeat;
This is what i want to do now.