With this script, things like that are controlled by the ordinary HTML and/or css methods of your choosing, in Step 2 from the demo. Here is an image fragment from Step 2:
HTML Code:
<a href="#"><img src="dynamicbook1.gif" border=1></a> <a href="#"><img . . .
Notice the preceding and following spaces, they will influence the gap between images. The number used for the border is the width of the border. You can style the images, links and their containers from a stylesheet or with inline style.
From a stylesheet (use whatever valid styles you like):
Code:
<style type="text/css">
#trueContainer {
background-color:red;
}
#trueContainer img {
margin:0 2em;
border-width:0;
}
</style>
Bookmarks