Skip to main content

Cookiebot dialogue box inline CSS

Comments

1 comment

  • Hi, 

    Cookiebot shows and hides the consent banner using JavaScript, so it could be manipulated on button click. You can use JS to control the consent banner behaviour, for example create a function which hides the banner, something like this: 

    function hideCookieBanner() {
    var cookiebanner = document.getElementById("CybotCookiebotDialog");
    cookiebanner.style.display = "none";
    }

    Regards

    0

Please sign in to leave a comment.