I generated a scaffold in ruby and I want to insert a background image to every page on the site but Im not sure what the link to the image should be.
my image is
In Rails 3.1, the path will actually be `/assets/dep.jpg':
background-image: url(/assets/dep.jpg);
If you convert your scaffold.css file to a Sass file (rename to scaffold.css.scss) then you can use the helper:
scaffold.css.scss
background-image: image-url("dep.jpg");