Change Back to Top Button
-
Hello,
Is there a way to change the Back to Top Button icon by one of my image ?
Thanks you
Hello,
To change the scroll to the top button icon with an image you need to add the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.
body .scrollToTop::after {
content: "";
background: url(' ') no-repeat;
background-size: contain;
height: 20px;
width: 20px;
margin-top: 15px !important;
}
You can add the URL of the image in the URL tag.
Best Regards.