I have been to this page: Background images path in Sass and Compass and it seems like it should be the answer to my question, but I am missing something. Here is my code:
config.rb
images_dir = 'img'
sass file
header { background: image-url('raeshineLogo.png', false, false); }
which outputs to:
header {
background: url('/img/raeshineLogo.png');
}
Seems like it should work, the path is correct, but what am I missing?