The demo just continues scrolling, what did you do to change that behavior?
I'm not too sure 5cm is a valid unit in HTML, if it is, one sure fire way is to use a small transparent .gif (1x1 or 1x2 pixels in actual size will do) and put this in the field you are talking about:
Code:
//Specify gap between each image (use HTML):
var imagegap="<img src='transparent.gif' width='5cm'>"
If 5cm isn't valid HTML, and I suspect it is not, figure out the rough pixel equivalent say, 10:
Code:
//Specify gap between each image (use HTML):
var imagegap="<img src='transparent.gif' width='10'>"
Bookmarks