All my static media is on a subdomain static.domain.com while the rest of the code is on www.domain.com.
I am trying to apply the pngfix for IE and i noticed via fiddler that there are serveral requests to www.domain.com rather than static and these are all getting 404 and causing insane page load times. I swapped out the relative path to the image for an absolute path and it works.
The css and js are both on static.domain com. I've been banging my head on this for a while. I'm using an addClass() in jquery to apply the style. All the other images show up. What's going on?
Doesn't work(rlative)
.wwTxtQimage {
font-size: 10pt !important;
background-color: transparent;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='/images/wall/back.png?v=0') !important;
zoom: 1;
padding: 5px;
}
Works when absolute
.wwTxtQimage {
font-size: 10pt !important;
background-color: transparent;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='http://static.domain.com/images/wall/back.png?v=0') !important;
zoom: 1;
padding: 5px;
}