IE often has problems interpreting the concept of center where nested positioned divisions (as created by this and many scripts) are concerned. You can most likely get the same effect across browsers using this technique - get rid of the 'text-align:center' (red):
Code:
<div style="width:800px;text-align:center"><script>
var myimages = new Array();
myimages[0] = ['images/userimages/139125.jpg', '', ''];
myimages[1] = ['images/userimages/225555.jpg', '', ''];
//Create new drop-in slideshow
//Syntax: new dropinslideshow(image_array, slideshow_width, slideshow_height, delay_before_rotation)
new dropinslideshow(myimages, 400, 300, 3000);
</script></div>
Put this in the head of the page:
Code:
<style type="text/css">
#_dropslide1 div {
text-align:center;
}
</style>
Note: If taking advantage of the multiple use capability of this script, subsequent shows on a page will use #_dropslide2, #_dropslide3, etc.
Bookmarks