• Resolved makapki

    (@makapki)


    hi,
    how can i make slower “slider” carousel and “call to action” rotating words?

    something in js or php files?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Specia Theme

    (@specia)

    Hello,

    To manage slider speed. Find custom.js in your theme folder and change value.
    Theme folder > Js > custom.js >
    /*
    * Slider Script
    */
    jQuery(document).ready(function() {
    var owl = jQuery(‘.slider-version-one’);
    owl.owlCarousel({
    nav: owl.children().length > 1,
    navText: [“<i class=’fa fa-angle-left’></i>”,”<i class=’fa fa-angle-right’></i>”],
    loop: owl.children().length > 1,
    autoplayTimeout:5000,
    margin: 0,
    autoplay: true,
    items:1,
    smartSpeed:450,
    responsive: {
    0: {
    items: 1
    },
    600: {
    items: 1
    },
    1000: {
    items: 1
    }
    }
    })
    })

    Thanks

    • This reply was modified 8 years, 1 month ago by Specia Theme.
    drica100

    (@drica100)

    I changed that, but I did not get the result of making the rotate more “soft.”
    Please, What would be the value to replace the “5000”

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘slider and call to action speed’ is closed to new replies.