• I have changed the duration I believe in the correct places. In fact I have tried in a few places, but no luck. It is having no effect on it.

    The site is https://communityfootball.net/ and I have tried changing the “Delay” variable, but it has absolutely no effect.

Viewing 1 replies (of 1 total)
  • You may have a function inside your featured.php that is named “startGallery()” – inside this function is a variable named “delay”, you change this to whatever value you like.

    In my functions.php, mine is as follows (10 second delay):

    <script type="text/javascript">
    	function startGallery() {
    		var myGallery = new gallery($('myGallery'), {
    			timed: true,
    			delay: 10000,
    			slideInfoZoneOpacity: 0.8,
    			showCarousel: false
    		});
    	}
    	window.addEvent('domready', startGallery);
    </script>

    *** NOTE ***
    The delay is in milliseconds so 1000 would be equal to 1 second, hence 10,000 in this example is a 10 second delay.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing the duration of the slides’ is closed to new replies.