Since you're using PHP to output the images dynamically, an easy way to precisely fine tune how many images gets shown per "page" (ie: 2 rows x 3 cols) is to do that using PHP instead first before outputting to VP script. In other words, you would tweak your PHP to output chunks of images in 2x3 batches, with the HTML as well to format them as desired. If you're not familiar enough with CSS, you may wish to resort to using table cells to do the formatting. Then, each chunk that's output would be put inside a "page" within VP script for pagination.
Another solution is to use this script instead: http://www.dynamicdrive.com/dynamici...photoalbum.htm. On the backend then, you'd be dynamically outputting the content arrays, such as:
Code:
var myvacation=new Array()
myvacation[0]=["../photo1.jpg", "", "photo1-large.jpg"]
myvacation[1]=["photo2.jpg", "Our car", ""]
myvacation[2]=["photo3.jpg", "Our dog", "photo3-large.jpg"]
myvacation[3]=["photo4.jpg", "Our hotel", "http://www.gohawaii.com/"]
myvacation[4]=["photo5.jpg", "Our Computer", "http://www.google.com", "_new"]
myvacation[5]=["photo6.jpg", "Our house", "photo6-large.jpg"]
myvacation[6]=["photo7.jpg", "Our Friends", "http://www.ask.com"]
Bookmarks