I've done my searching and the topics haven't been of help.
I'm trying to have the background image of my header repeat across the X axis of the header div.
When I make CSS with a long URL such as
background-image:url('http://site.com/images/logo.png'); everything works fine
When I try to shorten the CSS to something such as ~/images/ or even having the CSS and site file already in the root folder and using /images/ I get nothing
background-image:url('~/images/logo.png')
background-image:url('/images/logo.png')
/images/should work. Can you check in Firebug's "Net" tab what the full request ends up looking like, and what response you get back? – Pekka Apr 23 '11 at 21:02url()doesn't work in IE5 for Mac. The preferred style is to not quote them at all. – darkporter Apr 23 '11 at 21:30