Hi guys!
I was wondering if I could get some help with removing the popup animation of the social icons, I tried putting the following code into quick css but it didn’t work:
.avia_transform .av_font_icon {
opacity: 1 !important;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
Thanks in advance!
Hey!
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.avia_transform .avia_start_delayed_animation.av_font_icon {
-webkit-animation: none;
animation: none;
}
Best regards,
Yigit
Wonderful! Thank you very much!