This question is related to https://stackoverflow.com/questions/25770590/change-color-when-hover-a-font-awesome-icon#=
What I'm trying to achieve is the hover style on Circle behind icon.
<span class="fa-stack fa-5x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-flag fa-stack-1x fa-inverse"></i>
</span>
.fa-circle:hover {
color: red;
}
http://jsfiddle.net/uvamhedx/802/
As you can see, when you go over the image, only one part of it will activate the hover effect. I guess this is because other image (flag) is on top if it.. Is there any way I could "avoid" flag icon and make it work?