No, my thumbnails can be all the same size. I'm quite sure that there is something I could do about it changing something the module code...
But what - and where?
you'd have to fiddle a bit with the <div> tags. each image and caption is enclosed in a .single-image <div>. and each row is reset with a <div class="clear"> </div>
look in the theme_fast_gallery_framework_code() function for where the .single-image tag is added.
look in theme_fast_gallery() function to see where it iterates through each picture on the page. this part:
...
// Form the HTML output
$output = '<div class="clear"></div>';
$output .= '<div id="fast_gallery">';
$i = 0;
$row_count = 0;
$hierarchy = variable_get('fast_gallery_hierarchy', 1);
foreach ($ar_pics as $key => $value) {
...
}
Comments
Comment #1
ncy commenteduse imagecache to resize all thumbnails to the same size. are you tied to having the thumbnails different sizes?
Comment #2
jan.n commentedNo, my thumbnails can be all the same size. I'm quite sure that there is something I could do about it changing something the module code...
But what - and where?
jan
Comment #3
ncy commentedyou'd have to fiddle a bit with the <div> tags. each image and caption is enclosed in a .single-image <div>. and each row is reset with a <div class="clear"> </div>
look in the theme_fast_gallery_framework_code() function for where the .single-image tag is added.
look in theme_fast_gallery() function to see where it iterates through each picture on the page. this part:
Comment #4
rapsli commentedgoing to close this issue, as this version is not supported anymore and the issue is old