• Resolved mhd101

    (@mhd101)


    I want to change how quickly the blog posts rotate on my home page. I would like for them to move to the left about once every 15 seconds rather than what seems to be every 3-5.

Viewing 1 replies (of 1 total)
  • vcordeiro

    (@vcordeiro)

    It now actually rotates at every 2 seconds.
    I could change it by editing the javascript function in the file \wp-content\themes\enigma\js\carouFredSel-6.2.1\caroufredsel-element.js.
    This function calls what seems to be a jQuery method with several attributes. One of them is timeoutDuration which is set to 2000 (milliseconds). Just set it as 15000 or how long you want it to hold until the next move.

    The scroll attributes shall be like below:
    `

    scroll : {
    items : 1,
    duration : 2000,
    timeoutDuration : 20000
    },

Viewing 1 replies (of 1 total)
  • The topic ‘How to slow down blog post rotation on home page’ is closed to new replies.