Hi, I am looking at implementing W3 Total cache on our site, but am running into some issues with relative image paths not being converted properly during the CSS magnification.
My theme (for simplification lets call it "Hello World 2011") folder structure is as follows:
- style.css
|
|-- styles
| |- reset.css
| |- template.css
|
|-- images
|- foo.jpg
|- bar.jpg
So the paths to images in template.css are referenced as:
url('../images/foo.jpg')
and image paths in style.css are referenced as:
url('images/bar.jpg')
But when the css is minified I am getting the following paths to images generated:
url('oworld_theme/themes/helloworld2011/oworld_theme/themes/helloworld2011/oworld_theme/themes/helloworld2011/images/foo.jpg')
What do I need to do in order to fix this issue?