Sure, the same images or different ones?
If it's the same images, you just make a copy of:
Code:
<div id="second_album">
<script type="text/javascript">
new phpimagealbum({
albumvar: ceilingdesigns, //ID of photo album to display (based on getpics.php?id=xxx)
dimensions: [1,6],
sortby: ["file", "asc"], //["file" or "date", "asc" or "desc"]
autodesc: " ", //Auto add a description beneath each picture? (use keyword %i for image position, %d for image date)
showsourceorder: false, //Show source order of each picture? (helpful during set up stage)
onphotoclick:function(thumbref, thumbindex, thumbfilename){
thumbnailviewer.loadimage("http://www.vytasornamental.net/images/large/" + thumbfilename, "fit2screen")
}
})
</script>
</div>
Place it where you want it to show up. Put it in a container division with a unique id as highlighted above then use an additional child selector in ddphpalbum.css to change the size of its thumbnails:
Code:
#second_album .photodiv img{ /*CSS for each image tag*/
width: 100px;
}
If you want different images put a getalbumpics.php file in the folder with those images. Make another:
Code:
<script type="text/javascript" src="http://www.vytasornamental.net/images/ceiling2/getalbumpics.php?id=ceilingdesigns2"></script>
tag for example that points to it and use a different ?id= name. Use that in your second call to new phpimagealbum():
Code:
<script type="text/javascript">
new phpimagealbum({
albumvar: ceilingdesigns2, //ID of photo album to display (based on getpics.php?id=xxx)
dimensions: [1,6],
sortby: ["file", "asc"], //["file" or "date", "asc" or "desc"]
autodesc: " ", //Auto add a description beneath each picture? (use keyword %i for image position, %d for image date)
showsourceorder: false, //Show source order of each picture? (helpful during set up stage)
onphotoclick:function(thumbref, thumbindex, thumbfilename){
thumbnailviewer.loadimage("http://www.vytasornamental.net/images/large/" + thumbfilename, "fit2screen")
}
})
</script>
If the thumbnail images are already the size you want, you can forget about the unique container and styles. But it can still be used to get a different look for anything inside the second album.
Bookmarks