Hello. Is there a way to disable the icon hover animation (icon circle) that is part of the portfolio grid, post slider, etc. I would like to keep the icon, just remove the animation-rotation effect. Thanks.
Hi,
Edit css > layout.css, find this code
a:hover .image-overlay .image-overlay-inside{
-webkit-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
-moz-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Fx 5+ */
-o-animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Opera 12+ */
animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* IE 10+ */
}
Remove it.
Regards,
Ismael
Thanks Ismael. Words perfectly!