Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1069864
    yipeedog
    Participant

    Can I delay the appearance of the scroll bottom anchor on a revolution slider above the masthead? Ideally it wouldn’t show up until the slider had been running for a few seconds. Thanks!

    #1070095
    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! This particular request can only be done by having a custom JS code in your page. Please add the following JS code in the customizer, Appearance > Customize > Custom > Javascript

    jQuery(function($){
      $(document).ready(function(){
        $('.x-slider-scroll-bottom').addClass('fade out');
      }); 
      
      $(window).load(function(){
        setTimeout(function(){
          $('.x-slider-scroll-bottom').removeClass('fade out').addClass('fade in');
        }, 8000);
      });
    });

    Please feel free to change the 8000 to a higher/lower number. It represents milliseconds and 1000ms is equivalent to 1 second.

    Hope this helps.

    #1071954
    yipeedog
    Participant

    Perfect! Thank you!

    #1071968
    Joao
    Moderator

    Glad to hear it.

    Let us know if you need help with anything else.

    Joao

  • <script> jQuery(function($){ $("#no-reply-1069864 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>