Hello Phil,
Yes, you can move the title underneath the image by swapping code that displays title and code for image.
<?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 } ?>
and
<?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 } ?>
in file: /modules/mod_jacontentslider/tmpl/default.php
Note: This ‘default.php’ is base file of JA Content Slider module so that whenever you update the new version, this change will be effected. Hence, it’s better if you overwrite this file for the template you’re using. This can be done by copying above file into folder: /templates/your_default_template_folder/html/mod_jacontentslider/ and edit like above