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.
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
Great thanks Josue
You are welcome, glad we could help :)
Regards,
Josue