Ufade (as I often call it) is a complex amalgam of script generated markup. However, the outermost part of it is just a division element with the height and width (plus 2 times the border, if any) you specify in the call as its dimensions. So - say you have:
Code:
<script type="text/javascript">
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
</script>
140 is the width, and 225 is the height, with 0 for the border. So you will have a division 140 x 225. You can then place that in a table cell or anywhere, as long as there is room for it.
Now, often people are using DW, FP, or another WYSIWYG editor and have trouble relating to what I've just said about divisions and dimensions and things fitting. In a case like that I suggest just using a single image from the slide show. Put it in your page as an ordinary image. Position it however you like and save your page. Then, in the code view or in a text only editor, find the <img . . . tag that corresponds to it, and replace it with the script call for your slide show, example:
Code:
<script type="text/javascript">
new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
</script>
In most cases it will work out just fine.
Bookmarks