The script itself doesn't cause that. I'd have to see the page though to know why it's happening on that page. But first make sure that there are no gaps between the images in the HTML code. This means no spaces, and sometimes even no line breaks. Like:
Code:
<img src="whatever"><img src="something">
Not:
Code:
<img src="whatever"> <img src="something">
And not:
Code:
<img src="whatever">
<img src="something">
And of course the images cannot have any borders, padding or margin set in css. If they're linked images, you must specifically set their border-width to 0 in css.
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks