Well, you could try just getting rid of the:
part, that should have no effect on positioning within the cell if the align is already set to top. And make sure the height of the cell is at least the height of the slide show, perhaps about 20px more:
HTML Code:
<td valign="top" style="height:207px;">
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 280, 187, 0, 1500, 1, "R")
</script>
</td>
The only logical reason that the content of the show can appear to be above the cell is that parts of it are positioned absolutely, and the cell's height is not set, if the content shows up after the cell is rendered, it must go somewhere. So if adding 20px to the height of the show for the height of the cell, as shown in my example doesn't 'get it' perhaps adding 30 or 40 will, or conversely, you might be fine with just the height of the show for the height of the cell, as long as you remember to get rid of that line break and the nbsp character, which will only add to the cell's height requirement.
Bookmarks