Log in

View Full Version : Slide show question



egghead
03-25-2009, 10:01 PM
Is it possible to put an outline or frame around each image?

http://www.dynamicdrive.com/dynamicindex14/dhtmlslide.htm

Snookerman
03-26-2009, 06:32 AM
Add a class value or an id value to the image tag here:

document.write('<img class="photoslider" src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')
then, add this to your CSS code:

.photoslider {
outline: 2px solid black;
}

Good luck!

amutha
04-22-2009, 11:22 AM
if you want single border in each image in slide show

it will be working

document.write('<img class="photoslider" src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')

i think, its not possible or not, if you want different border in each image, update border of image.

:confused: