• Hello, when I open the homepage, the slide does not immediately show up, it takes time to see it, ho can I fix it?
    Thanks
    Dani

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • I had a similar problem with a not upshowing flexslider (it list elements were display:none) and was able to trace it back to the activello/assets/js/functions.min.js script.

    Aside that $( window ).load(function() { being deprecated in jQuery 3, it didn’t always seem to trigger on my site. Therefore, I simply removed it.

    You could have the same Problem.

    This is now the part with the Slider functions which is working for me:

    // Slider functions
    // Can also be used with $(document).ready()
    jQuery(document).ready(function($) {
        if (0 !== $('.flexslider').length) {
            $('.flexslider').flexslider({
                animation: 'fade',
                easing: 'swing',
                direction: 'horizontal',
                reverse: false,
                animationLoop: true,
                smoothHeight: true,
                startAt: 0,
                slideshow: true,
                slideshowSpeed: 7000,
                animationSpeed: 600,
                initDelay: 0,
                randomize: false,
                fadeFirstSlide: true,
                pauseOnAction: true,
                pauseOnHover: false,
                pauseInvisible: true,
                useCSS: true,
                touch: true,
                directionNav: true,
                prevText: '',
                nextText: ''
    
            });
        }
    });
Viewing 1 replies (of 1 total)
  • The topic ‘slider do not work properly’ is closed to new replies.