• Hello Phil, Thanks for a great plugin! Is there custom css code to add a bottom margin? I am having issues of the age gate overlapping my cookie notice on mobile, so figured an increase in the bottom margin could help. Thanks again!

Viewing 1 replies (of 1 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @sheacurran10,

    There’s probably a few ways to do it, so might be worth having a look at the css reference.

    I think though that the main age-gate class might be the best bet as it already has some padding on it (50px by default).

    Increasing it might help. Though how the cookie notice is displayed (I’m guessing fixed to the bottom of the page) will play a part.

    Here’s a css snippet:

    
    @media screen and (max-width: 768px)
    .age-gate {
        padding-bottom: 150px;
    }
    

    Let me know how that goes.

    Cheers
    Phil

Viewing 1 replies (of 1 total)
  • The topic ‘Custom CSS for adding a bottom margin’ is closed to new replies.