Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #864853

    Hello

    1) I would like to delete the animation when I set an icon. There is a white circle when I hover with the mouse. How can I change it in style.css so I don’t have this.

    2) I would like to have the icons in “Icon list” bigger. Do you have the css-code for that?

    Thank you for helping and kind regards
    Nicole

    #866035

    Hey taina0,

    Thank you for using Enfold.

    1.) Please use the following css code to remove the sonar effect.

    .av_font_icon.av-icon-style-border .av-icon-char:after {
        box-shadow: none;
    }

    2.) Use this to increase the size of the icon.

    .avia-icon-list .iconlist_icon {
        height: 128px;
        width: 128px;
        line-height: 128px;
        font-size: 60px;
    }

    Best regards,
    Ismael

    #866423

    Hello Ismael

    Thank you for your help.

    The code for the sonar effect doesn’t work… Do you have another one?

    The other code works! Thank you!

    I have just another question: How can I stop the animation that the images/texts just grow up when I scroll down on the page?

    Can you help me for this problem?

    Thank you and kind regards
    Nicole

    #866954

    Hi,

    1.) Please replace it with.

    .av_font_icon.av-icon-style-border .av-icon-char:after {
        display: none;
    }

    2.) Use this to disable the “scale” and “opacity” animation.

    .avia_transform .avia-icon-list.av-iconlist-big .iconlist_icon {
        opacity: 1;
        -webkit-transform: scale(1);
        --ms-transform: scale(1);
        transform: scale(1);
    }
    
    .avia_transform .avia-icon-list.av-iconlist-big .avia_start_animation .iconlist_icon {
        -webkit-animation: none;
        animation: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    Best regards,
    Ismael

    #867274

    Hello Ismael

    Thank you!! The number 1 works but the code with the animation doesn’t. Do you have another solution?

    Thank you and kind regards
    Nicole

    #867947

    Hi,

    I can’t see the code 2nd code when I inspected the site. Did you remove it? Please post the login details so that we can test it.

    Best regards,
    Ismael

    #868075

    Hi Ismael

    Sorry, I did it a second time. It works at icon-list but not at “icon”.
    I need it also for that. Can you give me the code for this too please?

    Thank you so much for your help.

    Kind regards
    Nicole

    #868518

    Hi,

    Please use this code for the standard icon element.

    .avia_transform .avia_start_delayed_animation.av_font_icon, .avia_transform .av_font_icon {
        -webkit-animation: none;
        animation: none;
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    The site is on maintenance mode.

    Best regards,
    Ismael

    #868622

    Perfect, thank you so much Isamel!
    Best regards
    Nicole

    #868846

    Hi Nicole,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.