when running my mvc website locally (VS IIS) images are displayed correctly:
css snippet:
.sprites {
background: transparent url(../images/sprites.png) no-repeat 0 0;
}
However, when the site is published to the server OR Local IIS (not VS IIS), images fail to load (giving invalid path)
the only way to display images correctly on the Server is to modify css files and instead of "../images/sprites.png"
have "/content/images/sprites.png"
why is that?