Hi, how can I make the scroll to the top icon to be #00a59d and on hover to become #2846aa and making the inside arrow white?
Thanks.
Hey DROR!
Please add following code to Quick CSS
a#scroll-top-link {
color: white;
background: #00a59d;
border-color: #00a59d;
}
a#scroll-top-link:hover {
background: #2846aa ;
border-color: #2846aa ;
}
Best regards,
Yigit
The arrow disappears on hover. How can I make sure it still shows on hover?
Hi!
Please change the code to following one
a#scroll-top-link {
color: white;
background: #00a59d;
border-color: #00a59d;
}
a#scroll-top-link:hover {
background: #2846aa;
border-color: #2846aa;
color: white;
}
Cheers!
Yigit
Thanks.