Hello,
I was wondering how to change the color or remove the scroll to top arrow. I saw some other posts on this and tried the suggested css but it did not seem to work (however the post answer was from 2013 so maybe outdated?)
Thanks!
Chris
Hey Chris,
You can change the background colour using this CSS:
#scroll-top-link {
background-color: #ffffff;
}
Or remove it using this:
#scroll-top-link {
display: none;
}
Best regards,
Rikard
Thanks Rikard,
that works great :)