Here's a span that I have:
<span class="fa fa-green fa-arrow-circle-o-right" aria-hidden="true"></span>
I decided to change the color to #008d4c like this:
.fa-green {
color: #008d4c;
}
But when I try to hover over it, the color doesn't change. Here is what I did for the hover function:
.fa-green:hover {
color: black;
}
Can anyone help me figure out what's going wrong?