Create a child theme then the child theme style.css
. featuretext img {display: none;}
. featuretext img: hover {display: none;}
That will actually remove icons totally, not sure if that’s what you want.
NB. If you want to do that, copy the code as it is but remove the spaces between the periods and the featuretext
.
Creating a child theme is the start of the solution to stop the spin.
What I did instead was add this to my child theme’s style.css
:
.featuretext img:hover{
-webkit-transform:rotate(0deg);
-moz-transform:rotate(0deg);
-o-transform:rotate(0deg);
}
This just didn’t make it spin at all since this asks it to rotate 0 degrees.