Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #258566

    How do I remove the popup arrow (when scrolling towards bottom of a page) on a given page? In other words, if I want to remove it from the homepage?

    Also, for very long pages, how can I control when it pops up? I’d like it to popup a bit later than it does.

    #258568

    Hey!

    To hide it add this to the Quick CSS:

    #scroll-top-link{
    display: none !important;
    }

    To hide it only in the home:

    .home #scroll-top-link{
    display: none !important;
    }

    To change when it appears you’d need to edit js/avia.js, line 1264:

    if(st < 500)
    

    Regards,
    Josue

    #258589

    Great thanks Josue

    #258590

    You are welcome, glad we could help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.