Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1210114

    Hello!

    Is it possible to add a fade in from bottom to center of screen animation for the existing cookie consent modal window? Is there already such an animation implemented in Enfold that I can reuse?

    Is it necessary to create a hook for a custom lightbox that has to be used instead of the default cookie consent modal window?

    Best regards

    #1212530

    Hey Eneas,

    Thank you for the inquiry.

    The cookie consent bar actually animates from the bottom by default. If you want it to align to the middle of the screen, try to add this css code.

    
    #top .avia-cookie-consent{
        opacity: 0;
        transition: all 1s;
    }
    
    #top .avia-cookie-consent {
        bottom: 50%;
        left: 0;
        opacity: 1;
    }
    

    Best regards,
    Ismael

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