<link href="/css/style.css" rel="stylesheet" media="all" type="text/css"/>
Then on my local machine it won't work, and it's because of the initial /, as this does work:
<link href="css/style.css" rel="stylesheet" media="all" type="text/css"/>
Similiarily in my css files I'll have background images like this:
background-image: url(/images/image.jpg);
Which works on the dev and prod servers but not wamp, and reversely this works on the wamp server:
background-image: url(images/image.jpg);
Any thoughts on why this is?

New Topic/Question
Reply



MultiQuote



|