A few methods come to mind; all require some coding and selective application of styles. Could maybe be done with a module, but that's not my specialty.
If you don't know how to code, you'll have a difficult time doing this.
One method would be to use a number of if statements to check the album id and to size accordingly. A better way would be to use the custom fields module to define the dimensions of each album's thumbs, then use that value (if present; if no defined value, fall back to defaults).
your thumbs would need class <img class="thumbnail" />
you would want the real thumb to be at least as big as the largest thumb size as down scaling looks fine but up scaling can cause artifacts.
Posts: 27300
You might be interested in http://codex.galleryproject.org/Gallery3:Modules:emboss
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 1857
A few methods come to mind; all require some coding and selective application of styles. Could maybe be done with a module, but that's not my specialty.
If you don't know how to code, you'll have a difficult time doing this.
One method would be to use a number of if statements to check the album id and to size accordingly. A better way would be to use the custom fields module to define the dimensions of each album's thumbs, then use that value (if present; if no defined value, fall back to defaults).
EDIT: Also, similar thread with similar considerations: http://galleryproject.org/node/104109
Posts: 8339
you could also resize through css by adding a class to the <body /> say using the parent_id something like:
then in css:
your thumbs would need class <img class="thumbnail" />
you would want the real thumb to be at least as big as the largest thumb size as down scaling looks fine but up scaling can cause artifacts.
-s
________________________________
All New jQuery Minislideshow for G2/G3
Posts: 1857
Ha! Never would've thought of that.