Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1351079

    Hello,

    I would like to disable the Cookie Consent Message Bar on small and very small screens. How can I do this?

    Regards,
    Marina

    #1351133

    Hey Marina,

    Thank you for the inquiry.

    You can try this css code in the Quick CSS field to hide the consent bar on smaller screens, but please note that this will prevent mobile users from accepting the cookies, which may prevent certain features (map, fonts etc) from working correctly.

    @media only screen and (max-width: 989px) {
    
      /* Add your Mobile Styles here */
      .avia-cookie-consent-wrap {
        display: none;
      }
    }
    

    Best regards,
    Ismael

    #1351373

    Hello Ismael,

    Thank you for the code and explanation. I assume, if I use the “Use as a simple message bar without cookie logic” option, it will solve the problem of certain features (map, fonts etc.) not working correctly if mobile users will not be able to accept the cookies?

    Regards,
    Marina

    #1351622

    Hi,

    Thank you for the update.

    , if I use the “Use as a simple message bar without cookie logic” option, it

    Yes, using the simple message bar without the cookie logic should work in this case, but external services (maps, recaptcha) will be able to store cookies to the clients’ local storage with or without their consent, which might be against the GDPR rules.

    Best regards,
    Ismael

    #1352766

    Hello Ismael,

    Thank you for your explanation and sorry for the delayed response, you can close the ticket.

    Best regards,
    Marina

    #1352772

    Hi,

    Thanks for letting us know, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Disable Cookie Consent Message Bar on small and very small screens’ is closed to new replies.