
Originally Posted by
logicSix
I've been trying to put this together. I'm having a hard time following all of this. I need a background image to fade in and out behind a formatted table. Should i just use the UFISS with the z index of the formatted table set to 30000?
Please help, i am not JS guru
This really has nothing to do with javascript, it is a problem in layout and style. Here is what I would suggest - start with a relatively positioned container large enough to hold either the table or the slide show, whichever is largest, and have both the show and the table inside it in this order:
HTML Code:
<div style="width:280px;height:200px;position:relative;">
<div style="position:absolute;top:0;left:0;">
<script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 140, 225, 0, 3000, 0)
</script>
</div>
<table style="position:absolute;top:0;left:0;z-index:300000;"><tr><td>whatever</td></tr></table>
</div>
The relatively positioned division will contain the absolute division and table which will position themselves relative to it. To get things to line up as desired, the top and left values for either the table, the show, or both may need to be changed. If anything other than zero is used for them, specify pixels, ex:
Code:
top:10px;left:20px;
Make sure the table itself and its row(s) and cell(s) and anything inside them have no background colors or images. That's about it.
Bookmarks