All images in the slide show, or just one? For all images in the slide show, use css:
Code:
<style type="text/css">
#master0 img {
border: 3px solid red;
}
</style>
Put that in the head of the page. For a single image, I think the easiest way would be to put a border around it in an image editing program.
But there are ways, using some of the more advanced and either undocumented features or modifications of the script to apply individual styles to individual images.
I must mention though, last time I looked your images didn't really fit into the space provided for them, even after the changes. In a case like that, borders of any kind would probably look odd.
If you are using:
Code:
<div style="float: right; width: 476px; height: 350px;">
<script type="text/javascript">
new inter_slide(slides, 477, 312)
</script>
</div>
You might try:
Code:
<div style="float: right; width: 476px; height: 350px; border: 3px solid red; overflow: hidden;">
<script type="text/javascript">
new inter_slide(slides, 477, 312)
</script>
</div>
Bookmarks