• Hello, I was wondering how I would go about setting a delay for the popup to initiate.
    I’m having an issue with a cookie plugin that comes up at the same time. It is fine on PC but for mobile users it does not allow input because they are overlapping on-screen.

    Is there a way to have a delay or force one to be on-top?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @bigrilla,

    Do you have a link? You can probably may age gate sit higher with some css.

    Something like:

    
    .age-gate-wrapper {
      z-index: 1000000;
      /* Make the number as big as you need */
    }
    

    You could also hide the cookie bar when age gate is visible, something like:

    
    .age-gate-restricted .the-classname-of-your-cookie-solution {
      display: none;
    }
    

    Thanks
    Phil

    Plugin Author Phil

    (@philsbury)

    Hi @bigrilla – another thing you could do is disable “focus trap” in the advanced settings, that’d probably solve it

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Set Delay on Popup?’ is closed to new replies.