Hmm just to clarify then, are you trying to create the rows of thumbnails for Step Carousel, or John's Slideshow script? For either though, the thumbnails consist simply of HTML markup, so as long as you're familiar with HTML, you should be able to achieve the desired look.
For example, with Step Carousel, the HTML for a two row thumbnails interface may look something like:
Code:
<style>
div.thumbnails a{
float:left;
margin-right:5px;
}
</style>
<div class="thumbnails">
<a href="javascript:stepcarousel.stepTo('galleryb', 1)"><img src="thumb1.gif" /></a> <a href="javascript:stepcarousel.stepTo('galleryb', 2)"><img src="thumb2.gif" /></a> <a href="javascript:stepcarousel.stepTo('galleryb', 3)"><img src="thumb3.gif" /></a> <br style="clear:left" />
<a href="javascript:stepcarousel.stepTo('galleryb', 4)"><img src="thumb4.gif" /></a> <a href="javascript:stepcarousel.stepTo('galleryb', 5)"><img src="thumb5.gif" /></a> <a href="javascript:stepcarousel.stepTo('galleryb', 6)"><img src="thumb6.gif" /></a>
</div>
Bookmarks