Hi ousset,
You can have a look at this file: modulesmod_jacontentslidertmpldefault.php and you will see these 2 divs:
[PHP]
<?php if( $params->get( ‘showtitle’ ) ) { ?>
<div class=”ja_slidetitle”>
<?php echo ($params->get( ‘link_titles’ ) ) ? ‘<a href=”‘.$link.'” title=””>’.$contn->title.'</a>’ : $contn->title;?>
</div>
<?php } ?>
<?php ?>
[/PHP]
[PHP]
<?php if( $params->get( ‘showimages’ ) && (strlen($image)>3) ) { ?>
<div class=”ja_slideimages tooltips clearfix”>
<div class=”ja_slideimages_inner”>
<div class=”content”>
<?php echo $image; ?>
</div>
</div>
</div>
<?php } ?>
[/PHP]
Wrap position of these 2 divs will help to make the title locates below the image.
Hope it helps.