I\'m trying to override my first \"color change\" with a second. I\'d like to have a silver color on my icon, when hover the text, and red color icon when hovering the icon.
You need to style the link itself not the element around it. Add a class to the a element.
My link icon
Then you can do the following
a.button:link{ color:red; } a.button:hover{ color:yellow; }