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
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