CSS Script for Removing the Cookiebot Logo
First, it’s important to understand how to “remove” the Cookiebot logo from the banner and the trigger. This can be done using CSS. CSS is the “language” that determines how elements on your website appear. It’s a code that also allows you to decide which elements are visible or hidden. Below, I’m sharing the CSS script to “remove” the Cookiebot logo from various locations:
<style type="text/css">
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
display: none !important;
}
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
display: none !important;
}
.CookiebotWidget-main-logo {
display: none !important;
}
</style>
Implementing the CSS Script via GTM
You can load the script directly via the CSS file, but it’s likely you don’t have access to the website’s code. Therefore, I’ll explain how to load this script using Google Tag Manager (GTM).
Create a new trigger
You’ll need two triggers for this:
- All Pages (this trigger already exists in GTM).
- Cookie Consent Update (this trigger should be created first).
To create a trigger in GTM, follow these steps:
- Choose the trigger type
Custom Event Trigger
. - Enter
cookie_consent_update
as the event name. - This trigger is necessary because Cookiebot may reload the logo in the Privacy Trigger after a consent update.
Create a new tag
The tag itself will be a Custom HTML tag. Here’s how to set it up:
- In GTM, go to ‘Tags’.
- Click on ‘New’.
- Name your new tag, for example:
Custom HTML – Hide Cookiebot Logo
. - Click on the ‘Tag Configuration’ block and choose the tag type
Custom HTML
. - Paste the CSS script shared above into the text field.
- Under Consent Settings, select ‘No additional consent required’.
- Click on the ‘Triggering’ block and select the ‘All Pages’ trigger.
- Click the plus icon in the ‘Triggering’ block to add the Cookie Consent Update trigger.
- Save the tag and publish the changes once all steps are completed.