Hi All,
Well this is a simple problem, I'm developing websites for a client and I send them the html/css files with the regular url's in css like this -
#body {background-image: url(Images/bg.jpg);}
but they send me back the css file which has a Forward Slash '/' in the beginning of every url like this - #body {background-image: url(/Images/bg.jpg); }. This results in the images not appearing in my browser, I don't want to remove the forward slash from the entire css code because I've to send this css file back to the clients, so I'm trying to find a solution where such files will appear properly even while viewing locally.
Thanks Guys.