• Resolved browmaniac

    (@browmaniac)


    I have applied Motion Effect > Fade In to my page. But the badge seems to appear sooner than the rest of the page. How to add motion effect also to the badge?

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 19 total)
  • Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    Thank you for using our plugin. We understand that you want to add a fade-in effect to the badge as well, correct? You can solve this issue by applying a style to our badge class. Currently, we have no option to add this type of effect in the backend, but it is possible by applying CSS.

    Thread Starter browmaniac

    (@browmaniac)

    @sreejithacowebs What would be the exact css for that? ??

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    Could you please add the CSS below to your backend Appearance -> Customize -> Additional CSS or your theme CSS file? If it does not work properly, please contact your theme developer for support.

    .acoplw-badge {
    animation: fadeIn 2s ease-in-out;
    }
    @keyframes fadeIn {
    from {
    visibility: hidden;
    }
    to {
    visibility: visible;
    }
    }

    Please note that the text “fadeIn” and the time (2s) may be changed as per your requirement.

    Thread Starter browmaniac

    (@browmaniac)

    @sreejithacowebs Sorry, this doesnt work..

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    Could you please try the code below? If it is not working properly, please contact your website developer for assistance.

    .acoplw-badge {
    ? animation: fadeIn 2s ease-in-out;
    }
    @keyframes fadeIn {
    ? from {
    ? ? opacity: 0;
    ? }
    ? to {
    ? ? opacity: 1;
    ? }
    }
    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    As we haven’t heard back from you further, we assume that this issue has been resolved at your end and considering this ticket as closed. Please don’t hesitate to get back to us if you require any further assistance or clarifications from our end in the future. Thanks!

    Thread Starter browmaniac

    (@browmaniac)

    Sorry not solved. It loads rightaway, goes away for a second and then performs fade in effect.

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    We have some limitations checking the code on the frontend. Upon inspecting the site, it was noticed that the provided CSS has been removed. Could you please add the code to your theme’s CSS? This will help us investigate the issue on our end. We await your valuable response; please note that a delayed response may result in the ticket being closed.

    Thread Starter browmaniac

    (@browmaniac)

    @sreejithacowebs Code added again, please check

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    We are sharing the corrected style code. Please try using this CSS. As mentioned in the previous email, we have limitations because we can only inspect the frontend for your issue. It would be better to implement the changes with the assistance of your web developer.

    .acoplw-badge {
    opacity: 0;
    animation: fadeIn 2s ease-in-out;
    animation-delay: 2s;
    }

    @keyframes fadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
    }
    Thread Starter browmaniac

    (@browmaniac)

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    Could you please remove the previously provided CSS and try adding the CSS below?

    .acoplw-badge {
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards ease-in-out;
    }
    Thread Starter browmaniac

    (@browmaniac)

    @sreejithacowebs Thank you, this resolved the issue!

    Plugin Support Sreejith Acowebs

    (@sreejithacowebs)

    Hi,

    Happy to hear that! Your appreciation helps us improve our quality.

    Thread Starter browmaniac

    (@browmaniac)

    @sreejithacowebs Hi, the motion effect is suddenly gone. What could be the issue?

Viewing 15 replies - 1 through 15 (of 19 total)
  • You must be logged in to reply to this topic.