Hi,
I had to spend a lot of time to make it work. In the end I learned this:
1:
In the javascript file, there was this set of options like:
w1024 : { rows : 3, columns : 8 },
For a screen resolution greater than 1024, unless I have number of images that can fill 3 rows completely, the script won't be shuffling the images.
I changed it to:
w1024 : { rows : 1, columns : 6 },
2:
Columns above is set to 6. If I add 6 or less images, it won't shuffle images. At least
one extra image needs to be added for it to work.
Am I right?