Hi @eduardobartelle,
You can indeed do this with some CSS under Appearance -> Customize -> Additional CSS. Depending on your preferences you could either make all of the buttons larger, like this:
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
height: 80px; /* change value as desired */
}
Or specifically for the Accept button, for example.
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
height: 80px;
}
Kind regards, Jarno
-
This reply was modified 2 years, 2 months ago by
Jarno Vos.
Thank you!
is there a way that i can make the deny and preferences buttons smaller?
Hi @eduardobartelle,
You can do the same for the other buttons, all you have to do is change the selector in the CSS accordingly.
The first rule attached below can be used for the Deny button, the second one for the View & Save Preferences buttons.
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
height: 80px;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences {
height: 80px;
}