While the official Facelift examples work well in IE6, I have trouble with the Drupal module. The text gets replaced and the images appear, but IE shows the broken/missing image icon nevertheless. See the attached snapshot.
| Comment | File | Size | Author |
|---|---|---|---|
| flir-ie6.png | 12.86 KB | David Lesieur |
Comments
Comment #1
btopro commentedlol yeah, I have seen that (at total random) when using it in IE6. I believe this is another issue that's solved in FLIR 1.2 but I guess we'll see when I get around to implementing.
Comment #2
btopro commentedSupport for this is shotty at best. It's still outside the scope of this project to fix though
Comment #3
malphas commentedJust ran into this issue in the FLIR module for drupal 5. Guess it's the same problem. But I got it to work:
In flir.js there is a line with
img.src = this.options.path+'spacer.png';If you check the src of the broken image, it's looking for yoursite/spacer.png. And yes it's not there!
So:
img.src = this.options.path+'sites/all/modules/flir/flir/spacer.png';works for me