Put this in the head of your page:
Code:
<style type="text/css">
#fadeshow1 .gallerylayer img {
border: 1px solid #000!important;
}
</style>
where fadeshow1 is the wrapperid for your slide show.
However, with black being the default background for the images, unless you have changed that, I don't see how the above will show up, even if all of your images are the size of the slide show.
If that's the situation (using default background, images the size of the show), skip the above advice, and just increase the width and height settings for the show, ex:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://i26.tinypic.com/11l7ls0.jpg", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
["http://i29.tinypic.com/xp3hns.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
["http://i30.tinypic.com/531q3n.jpg"],
["http://i31.tinypic.com/119w28m.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
Code:
dimensions: [251, 181], //width/height of gallery in pixels. Should reflect dimensions of largest image
If things are the way I imagine (you are using the default background and your images are the size of the show), even though this is not technically a border, it will look like one.
If you want more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks