Well after no responses we tried many different things, but apparently it has to do with the Microsoft IE Alpha filter. Adding a style element in the JavaScript fadeslideshow.js file fixed the issue. The line you need to change is around +/- line 236.
Original:
Code:
setting.$restorebutton=$('<img class="restore" title="Restore Description" src="' + fadeSlideShow_descpanel.controls[1][0] +'" style="position:absolute;visibility:hidden;right:0;bottom:0;z-index:1002;width:'+fadeSlideShow_descpanel.controls[1][1]+'px;height:'+fadeSlideShow_descpanel.controls[1][2]+'px;cursor:pointer;cursor:hand" />')
.appendTo(setting.$wrapperdiv)
Update to the following:
Code:
setting.$restorebutton=$('<img class="restore" title="Restore Description" src="' + fadeSlideShow_descpanel.controls[1][0] +'" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+fadeSlideShow_descpanel.controls[1][0]+'\');position:absolute;visibility:hidden;right:0;bottom:0;z-index:1002;width:'+fadeSlideShow_descpanel.controls[1][1]+'px;height:'+fadeSlideShow_descpanel.controls[1][2]+'px;cursor:pointer;cursor:hand" />')
.appendTo(setting.$wrapperdiv)
Best Regards,
Matt Boaman
Bookmarks