
You should have some javascript at the foot ot the page just above </body> as shown below.
Simply add “delay: 5000” for a 5 second delay orĀ “delay: 7000” for a 7 second delay etc on a new line as below.
<script>
jQuery(document).ready(function($) {
$(“.royalSlider”).royalSlider({
// as an example, enable keyboard arrows nav
keyboardNavEnabled: true,
globalCaption:false,
loop:true,
transitionSpeed:600,
autoPlay: {
// autoplay options go gere
enabled: true,
pauseOnHover: false,
delay: 5000
}
});
});
</script>
<!– InstanceEndEditable –>
</body>