Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #386565

    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?

    #387092

    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

    #387249

    Thanks @Yigit!

    The icons are still popping a bit can u disable that function / feature all together?

    //Cheers!

    #387787

    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

    #389019

    Hi @Ygit,

    Thank you it works great!

    You can close this ticket now :-)

    //Cheers!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Disable icon pop out function’ is closed to new replies.