Hi there,
I tried to style the anchor in our design as in the forum Thread “Scroll top anchor CSS styling” from Apr 12 described.
What do I do wron? Nothing changes besides the hover i class.
//scroll-top-anchor-css-styling
.x-scroll-top:link i{
color: rgb(235, 114, 35);
border-color: rgb(235, 114, 35);
opacity: 0.5 !important;
}
.x-scroll-top:hover i{
color: rgb(235, 114, 35);
border-color: rgb(235, 114, 35);
opacity: 1 !important;
}
.x-scroll-top:active{
color: rgb(235, 114, 35);
border-color: rgb(235, 114, 35);
opacity: 0.5 !important;
}
.x-scroll-top:visited{
color: rgb(235, 114, 35);
border-color: rgb(235, 114, 35);
opacity: 0.5 !important;
}
I want to change the color of the indicator an the border to rgb (235, 114, 35) when the ink is not hovered (as normal link, active and visited).
Any help?
Thank you.