Due to different image sizes, the captions are not horizontally aligned - is there a way to align them horizontally?
Keep up the good work!

jan

CommentFileSizeAuthor
fr.png66.19 KBjan.n

Comments

ncy’s picture

Status: Active » Postponed (maintainer needs more info)

use imagecache to resize all thumbnails to the same size. are you tied to having the thumbnails different sizes?

jan.n’s picture

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?

jan

ncy’s picture

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) {
    ...
  }
rapsli’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

going to close this issue, as this version is not supported anymore and the issue is old