Different Sizes

I am working on a new site ourpictureshare.com and have tweaked Zenphoto to make my album thumbnails 460x230. I like how it looks, however I noticed this also changes the size of the thumbnails inside the album. Is there a way to keep my album images this size, but when a user clicks on an album the thumbnails in the album would be 120x120? Thanks,

Josh

Comments

  • acrylian Administrator, Developer
    If you want different sizes you need to do that in your theme directly. Search the functons guide for template functions with the term for "customalbumthumb" or "customsizeimage".
  • Acrylain,

    Thanks for the help. Now '<?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?>' looks like '<?php printCustomAlbumThumbImage("alt", 120, 120,120,85,85,0,0,"class", "id"); ?>'
  • acrylian Administrator, Developer
    Just to note: "alt" should be getAnnotatedAlbumTitle() since this is the alt-atribute of the img-tag. You don't need to fill "class" or "id", since they are the last parameters you can just skip them or set them empty with "". Tgese are only if you want to use a specific css class or id for that image.
Sign In or Register to comment.