Hi there!
How do I change the color of the Back to Top button? Also, how do I change it so it only shows up on mobile and tablet?
Thanks!
Hey alexmasica!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
#scroll-top-link {
color: #eeeeee;
border: 1px solid #444444;
background-color: red;
}
#scroll-top-link {
color: blue;
border: 1px solid green;
background-color: orange;
}
@media only screen and (min-width: 990px) {
#scroll-top-link { display: none; }}
@media only screen and (max-width: 989px) {
#scroll-top-link { display: block!important; }}
Regards,
Yigit
Thank you!