Add this to your stylesheet:
Code:
.descpanelfg span {
display: block;
position: relative;
top: 50%;
}
Wrap each of your descriptions in span tags, example:
Code:
["global_images/design8_1.jpg", "global_images/design8_4.jpg", "_new", "<span>The answer requires intelligence gathering to properly identify shareholders. Morrow has been providing shareholder surveillance since 1980, longer than any other firm. We can provide the most accurate profile of shareholders in the industry and via our 12-month active surveillance engagement, will provide monthly and ad-hoc reports to answer the question routinely – as the answer to this question changes</span>"],
Add this (highlighted) to your slide show declaration:
Code:
. . . uration: 750, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: "",
onslide: function(){
var d = this.setting.$descpanel.find('span');
d.css('marginTop', '-' + (d.innerHeight() / 2) + 'px');
}
})
Be sure not to miss the added comma (red) after the:
value.
Also, inside fadeslideshow.js I would suggest adjusting the speed of the description panel to 400:
Code:
/* Ultimate Fade-in slideshow (v2.1)
* Last updated: Sept 10th, 2009. This notice must stay intact for usage
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/
//Oct 6th, 09' (v2.1): Adds option to randomize display order of images, via new option displaymode.randomize
var fadeSlideShow_descpanel={
controls: [['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
//fontStyle: 'italic normal 14px Georgia',//font style for text descriptions
slidespeed: 400 //speed of description panel animation (in millisec)
}
Bookmarks