Thank you Beverleyh for your help! I was making the mistake of putting the div outside the table tags like u said. DOH!
I also needed the div to be a certain width as well, so if you want to have it fit a specific size it has to be like:
Code:
<td height="93" align="center"><div style="width:220px; border:3px solid #0FF"><script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages2, 220, 100, 0, 4000, 0)
</script></div></td>
or if you would prefer to style it in css. assign an id and have something like this in your css page (if you want to apply your div style to multiple objects on the page like i did make it a class not an id):
Code:
#display {
border: 3px solid #FFFFFF;
width: 220px;
}
call it in your html with the script like this:
Code:
<td height="93" align="center"><div id="display"><script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages2, 220, 100, 0, 4000, 0)
</script></div></td>
Bookmarks