I am trying to do something very simple, have stacked icons from font-awesome change color when they are hovered over. I am seeing the inside icon (the question mark) highlight like I want, but the outside circle is not changing color. HTML and CSS below:
//HTML:
<span class="more-info-toggle fa-stack">
<a href="#" id="more-info-share-toggle" data-toggle="tooltip" title="Why share?">
<i class="fa fa-circle-o fa-stack-2x"></i>
<i class="fa fa-question fa-stack-1x"></i>
</a>
</span>
//CSS:
.more-info-toggle:hover {
color:#53AB46;
}
Any idea why the outside circle isn't changing color? Thanks.