Hello,
I’ve like to have a rotation effect on an icon by mouse hover. I added a class to the shortcode, but it’s not working. Could you please help me to make it work?
shorcode: [x_icon type="plus" style="color:#fff; font-size:50px;" class="icon-effect"]
CSS:
.fake-accordion:hover .icon-effect {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
fake-accordion
is the class of the column where the shortcode is.
Thanks,
Antoine