stonedgamer
Hi,
You will need some customization in JA ACM slideshow module, you can download attached file and extract & replace the file: root/templates/ja_platon/acm/slideshow/tmpl/style-owl.php (Remember to backup this file first)
<div class="acm-slideshow acm-owl">
<div id="acm-slideshow-<?php echo $module->id; ?>">
<div class="owl-carousel owl-theme">
<?php for ($i=0; $i<$count; $i++) : ?>
<a href="<?php echo $helper->get('data.slideshow-link', $i); ?>">
<div class="item">
<?php if($helper->get('data.image', $i)): ?>
<img src="<?php echo $helper->get('data.image', $i); ?>" class="slider-img" alt="<?php echo $helper->get('data.title', $i) ?>">
<?php endif; ?>
</div>
</a>
<?php endfor ;?>
</div>
</div>
</div>
Regards