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')
link|improve this question
/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:02
Not that it really matters, but single quoting your resource paths inside of url() doesn't work in IE5 for Mac. The preferred style is to not quote them at all. – darkporter Apr 23 '11 at 21:30
feedback

2 Answers

up vote 1 down vote accepted

This is possibly because you're not shortening your URLs appropriately.

Assuming an absolute path of:

url('www.example.com/images/imageName.png');

A root-relative URL would be:

url('/images/imageName.png');

And a relative path (assuming your CSS file is in www.example.com/css/cssStylesheet.css) would be:

url('../images/imageName.png'); /* parent directory, then the images directory */

The ~ prefixed url format is unknown to me, though I suspect it's an ASP, or .NET, form? Though I'm unable to advise on that.

Questions that might be of use to you:

link|improve this answer
@David, it is indeed asp.net =) – Rob Apr 23 '11 at 21:04
@Rob, thank you kindly! =) – David Thomas Apr 23 '11 at 21:06
'../images/' worked. I guess getting into a .NET class made me forget about basic HTML and CSS. Thanks everyone for the help. – Tom Apr 23 '11 at 21:06
1  
@Tom - It looks like you're new to stackoverflow, so firstly, welcome =) If one of the answers here has answered your question (and it seems to have!) please click on the tick to the left of it to mark it as your "Accepted Answer". In this instance it looks like David's got top marks there! Doing this awards "reputation points" to that person AND you, which facilities using extra features of the site (eventually!). You can also click the upward pointing arrow next to answers to "up vote" them, which "rewards" the answerer with reputation points, if you think the answer has value to you. – Rob Apr 23 '11 at 21:14
2  
@Rob Thanks. I voted for David's post and will definitely do that every time. I was actually searching around for how to thank the person that helped between the time my problem was solved and the time I read your post. – Tom Apr 23 '11 at 21:24
show 2 more comments
feedback

A URL containing "~" is something that's specific to ASP.NET, it's processed server-side and transformed into a "proper" URL such as http://mysite/my_virtual_directory/images/logo.png. Web Browsers don't have any way to do this as they don't know to what "~" refers.

You need to ensure that the URLs you use in your CSS file are "understandable" by the browser, so either have them "fully qualified" (http://mysite/my_virtual_directory/images/logo.png) or starting from the "beginning" (/my_virtual_directory/images/logo.png).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.