2 Questions How do I change the color of the back to top button? How do I turn off the back to top button?
jgkiefer Hi Add this code in custom.css for color change
.back-to-top { background-color: #00a8e6;}
This code to hide it
.back-to-top {display:none!important;}
Thank you!