Removing back to top arrow from shop?

I would like to remove the back to top of the page arrow that appears in my embedded shop. I prefer to style my own button that looks much better than the ugly one which detracts from my site design.

This button really messes with my design footer as well and it MUST go! Any help from anyone with a fix would be greatly appreciated.

How do I remove the button?

UPDATE AND SOLUTION
I found a solution to make the ugly button go away!!!

To make it disappear, I had to paste the following into my WP theme main CSS code area…

.sprd-back-to-top__button–visible {
display: none;
}

Hope this helps!

1 Like

How about some custom css:

#sprd-back-to-top {
display: none;
}

@CardVibes I tried the CSS code but it didn’t work. Any suggestions?

marked this as solution