Tagged: animation, enfold, iconlist, transition
-
AuthorPosts
-
September 11, 2013 at 12:34 pm #29439
My client would like to remove the iconlist animations in the Enfold theme. I have tried simply;
Code:.avia_transform .avia-icon-list .avia_start_animation .iconlist_icon{
-webkit-animation: none;
-moz-animation: none;
-o-animation: none;
animation: none;
}but that doesn’t seem to work.
Can you give me some clues?
Thanks!
September 11, 2013 at 3:18 pm #140658How about if you try to use:
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
September 12, 2013 at 4:52 pm #140659Hi,
In your WordPress directory please go to Enfold > Js and open Shortcodes.js and search for “Iconlist shortcode javascript” ( should be in line 605 ) and comment out or delete all the code untill “Section Link Main Menu controler for one page sites”.
Then add following code to Quick CSS in Enfold theme options under Styling
.avia_transform .avia-icon-list .iconlist_icon { opacity: 1!important; -webkit-transform: scale(1)!important; transform: scale(1)!important;
-ms-transform: scale(1)!important; }I’m not sure if this is the best way to do it but does the trick.
Regards,
Yigit
September 16, 2013 at 10:18 am #161608Thanks for the replies. Yigit, that did the job; I assume that upgrading enfold will overwrite the change – I’m using a child theme – is there a cleaner way I can do this with the child theme over-ride?
September 17, 2013 at 1:47 am #162003Hi,
I tested this CSS code (without touching the JavaScript files), and it does the job:
.avia_transform .avia-icon-list .iconlist_icon { opacity: 1 !important; -moz-transform:scale(1) !important; -webkit-transform:scale(1) !important; -o-transform:scale(1) !important; transform: scale(1) !important; } .avia_start_animation .iconlist_icon{ -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important; animation: none !important; }You would only need to add it to the CSS in your child theme.
Regards,
JosueSeptember 17, 2013 at 10:29 am #162172Perfect – thanks!
-
AuthorPosts
- The topic ‘Remove iconlist animation effects’ is closed to new replies.
