Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #947389

    Hello I have a page with an icon list. I would like it not to fade in as it does at the moment…

    I saw a previous thread with some quick CSS solution that doesnt seem to be working for me ?

    (This is what i tried … )

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

    #947419

    Hey klaustrophobia,

    Make the following adjustment:

    .avia_start_animation .iconlist_icon.avia-font-entypo-fontello{
    opacity: 1 !important;
    -moz-transform: scale(1 !important);
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-animation: none;
    -moz-animation: none;
    -msanimation: none;
    animation: none;
    }

    Best regards,
    Jordan Shannon

    #947448

    ok, I just tried adding that to quick CSS with no results. Did you mean to add that to CSS or modify my previous modification
    (im new to CSS modifications… )

    #947450

    Hi,

    Remove what you currently had and add in what i posted.

    Best regards,
    Jordan Shannon

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