How to change scroll to top button color in Shop Isle
This guide shows you how to customize the scroll-to-top button color in ShopIsle using a short CSS snippet added to your child theme or a custom CSS plugin.
Important notice: Shop Isle ( ShopIsle ) is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.
Add the below CSS to your child theme's style.css/custom.css or alternatively you could install the "Simple Custom CSS" plugin and add the snippet below to it.
Edit to colors as needed, you could use other color formats such as hexadecimal.
.scroll-up a {
background: black;
color: white;
}