Hello! I'm hoping that someone can help me with this. I am using JA ACM in the Athena template and have configured it as Gallery Style 1. I would like to be able to slow down the rotation of the slides at a minimum and if there was a way to freeze the slides on mouse over, that would be ideal.

Thank you in advance for any help you may be able to provide.

    capstone2 Hi

    You can open this file:

    root/templates/ja_athena/acm/gallery/tmpl/style-1.php

    Look for the script at the end of file:

    <script>
    (function($){
    $(document).ready(function(){
    $(".acm-gallery .html5lightbox").html5lightbox({
    	autoslide: true,
    	showplaybutton: false,
    	slideinterval: 5000,
    	jsfolder: "<?php echo $path . 'js/html5lightbox/' ?>"
    });
    });
    })(jQuery);
    </script>

    and set the slideinterval to the value you wish (in milliseconds)

    (check out this page for more options of HTML5 Lightbox: https://html5box.com/html5lightbox/help.php )

    As always, thank you for your help saguaros! Your help let me fix this issue! Much appreciated!

    Write a Reply...
    You need to Login to view replies.