I'm new at Compass and I'm very interested in the sprite generator. I see it works fine. I followed a tutorial and I'm having some problems with my sprite. I inserted the files inside the folder called spr. I already inserted the following code in the file screen.scss:
@import "spr/*.png";
And inserted the following for my header:
h1{
@include spr-sprite(Flickr);
height: 91px;
}
I checked in inspector and the url is correct and the background position also. The problem is that once checked in the inspector element it cannot open the image url. The picture generated does work in the finder but its as the file doesnt exist. The name and location are perfect.
Could anybody let me know if they had this same problem and especially how to solve it?
Edit: Generated CSS
.spr-sprite, header h1 {
background: url('/images/spr-sbd3b4dd92d.png') no-repeat;
}
header h1 {
background-position: 0 -120px; height: 91px;
}
file://or are you using a local server? – steveax Feb 19 at 15:02relative_assetsin your config.rb? – cimmanon Feb 19 at 18:10