How to set css for Scroll to Top

Posted in: Newspaper
Post count: 13

How to set color of button for scrool to top?

If i want not to use it, how can to set it?

Post count: 20688

Hi,

The scroll to top button inherits the theme general accent color set in the theme panel
https://www.screencast.com/t/0ZHbvlRF4alx
If you want to change the color just for this button, use a code like this for example
https://www.screencast.com/t/G9jZdkRJe
This is the code used, if you decide to use it enter it in Theme panel->Custom CSS (change the color to what you want)

.td-scroll-up {
background-color: yellow;
}

Thanks

Post count: 13

Ok thanks. How about if i want to hide/remove it?

Post count: 20688

Hi,

If you want to remove it, use a code like this

.td-scroll-up {
display: none;
}

Thanks

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.