Tagged: icon
Hi,
Im using stand alone icons on the bottom of my pages and i want to disable the pop out function on them.
How to do it?
Hi Mattias!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia_transform .av_font_icon {
opacity: 1;
-moz-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
Regards,
Yigit
Thanks @Yigit!
The icons are still popping a bit can u disable that function / feature all together?
//Cheers!
Hi!
Please go to Enfold/js folder and open shortcodes.js file and find
else
{
element.waypoint(function(direction)
{
$(this).addClass('avia_start_animation').trigger('avia_start_animation');
}, options );
}
and comment it out as following
//else
// {
// element.waypoint(function(direction)
// {
// $(this).addClass('avia_start_animation').trigger('avia_start_animation');
//
// }, options );
// }
Cheers!
Yigit
Hi @Ygit,
Thank you it works great!
You can close this ticket now :-)
//Cheers!