For your first question you'd adjust the variables indicated in the script until they accommodate the height and width of your images;
Code:
//Specify the slider's width (in pixels)
var sliderwidth="300px"
//Specify the slider's height
var sliderheight="150px"
To adjust the space below, just increase the sliderheight variable mentioned above.
To increase the space above, look for this line in the code and change the values indicated;
Code:
write('<div id="test2" style="position:absolute;left:0px;top:10px"></div>')
write('<div id="test3" style="position:absolute;left:-1000px;top:10px"></div>')
And to adjust the space between, you use HTML in the imagegap variable;
Code:
//Specify gap between each image (use HTML):
var imagegap=" "
You could increase the gap with a non-breaking space characters or you could add a span with a specific width;
Code:
//Specify gap between each image (use HTML):
var imagegap="<span style='display:inline-block;width:10px'></span>"
If you need more help, please provide a link to your page.
Bookmarks