Is it possible to put an outline or frame around each image?
http://www.dynamicdrive.com/dynamici...dhtmlslide.htm
Printable View
Is it possible to put an outline or frame around each image?
http://www.dynamicdrive.com/dynamici...dhtmlslide.htm
Add a class value or an id value to the image tag here:
then, add this to your CSS code:Code:document.write('<imgclass="photoslider"src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')
Good luck!Code:.photoslider {
outline: 2px solid black;
}
if you want single border in each image in slide show
it will be working
i think, its not possible or not, if you want different border in each image, update border of image.Code:document.write('<img class="photoslider" src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')
:confused: