Okay
  Public Ticket #2669010
Remove scroll indicator on footer
Closed

Comments

  • Tsinart started the conversation

    Hi support team !


    I would like to know if there is a way to remove the scroll CTA (animated small arrow) on last row (which is the footer)


    I've used your code to add it in the first place!

    <script type='text/javascript'>
    jQuery( document ).ready(function() {
     jQuery('.full-page-inner').append('<a href="#" class="slider-down-arrow-full" style="transform: translateY(0px); opacity: 1;"><i class="icon-salient-down-arrow icon-default-style">  </i></a>');
    jQuery('body').on('click','.full-page-inner a.slider-down-arrow-full',function(){
        jQuery.fn.fullpage.moveSectionDown();
    console.log('clicked');
    });
    });
    </script>


    Thanks !


  •  2,963
    Andrew replied

    Hi Tsinart,

    Please try this css:

    body #footer-outer i, body #header-secondary-outer #social i {    display: none;}
    

    Hope this helps.

    Thanks.