Set it like so:
Code:
//Specify gap between each image (use HTML):
var imagegap=""
That's with no space between the quotes. Also, were you have images in your array like this (from the demo):
Code:
leftrightslide[0]='<a href="http://"><img src="dynamicbook1.gif" border="0"></a>'
Use zero for the border (the default coding in the demo uses border=1).
Finally, if you want as little spacing as the script allows, set this value:
Code:
//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=0
to zero as shown (default in the demo is 5). This last value only affects the space between each full train of images though (each time the images start to repeat). It has nothing to do with the gap between each individual image.
___________________
Notes:
is bad form. It really is just a place holder in the demo. Either replace it with a real link or use:
Code:
<a href="javascript:void(0);">
Or remove the:
and the:
if no link is what you really want.
Bookmarks