When you use align="center", it gets tricky in IE, especially with scripts like conveyor. In IE, instead of putting an element around the show with align="center", edit the script here:
Code:
document.write('<table align="center" border="0" cellspacing="0" cellpadding="0"><td>')
Or, if you are using a DOCTYPE that causes IE to use standards or 'almost standards' mode, you can center it by using style in a containing element of the same width as the slide show and margin:0 auto; (for the demo slider that has a width of 300px):
Code:
<div style="width:300px;margin:0 auto;">
slide show script goes here
</div>
Bookmarks