Scroll to top icon color

My pages are dark, and the scroll to top icon is dark, can’t see how to change the color of the icon…

Please help

Hi @MC_TEF,

Thank you for reaching out to us. That’s because of the transparency in the Scroll to Top anchor, to fix this, please add the following code in the Theme Options > CSS:

.x-scroll-top {
    opacity: 1 !important;
}

If you want to change the color of Scroll to Top anchor then you can make use of the following code:

.x-scroll-top {
    border: 2px solid #dfff31;
    color: #dfff31;
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Hope this helps!

Worked perfect, thank you…

MC

You’re most welcome, MC.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.