There was a question how to position the Kissgallery e.g. into the center of a page. The thumbs are designed as “float:left”. It means they always start their row on the left border. There is a little change necessary in index.php.
Edit the index.php in kissgallery-plugin folder:
About line 46 reads:
$txt='<div class="kissgallery">'; $noofcols=$plugin_cf['kissgallery']['indexpage_no_of_cols'];
change it to:
$txt='<div align="center"><div class="kissgallery">';
and about the line 97 reads (just before the last return call) :
$txt.='</div>'; return $txt; ?>
change to:
$txt.='</div></div>'; return $txt; ?>
Not tested with other galleries.