Changing scroll top hover color

Hi there

I would like to change the color of the scroll top arrow on hover. I have tried this CSS but it is not working:

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

.x-scroll-top a:hover {
border: 2px solid #fff;
color: #fff !important;
}

Thank you very much for your help!

Hi @fbrugger,

Please update your custom CSS to this:

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

.x-scroll-top:hover {
    border: 2px solid #fff;
    color: #fff !important;
}

Hope it helps :slight_smile:

Hi thai

Thank you very much for your help! This works perfect! :grinning:

Glad we were able to help :slight_smile:

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