Scroll to Top Hover Colour
-
Is it possible to change the colour of the hover border and background colour of the .scrollToTop element?
Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.scrollToTop:hover,
.scrollToTop:focus {
border-color: black;
background-color: black;
}
Regards
I tried implementing the code and it didn’t have any impact on the colour of the element.
Try to replace with this one
a.scrollToTop:hover,
a.scrollToTop:focus {
border-color: black;
background-color: black;
}