Hi @jiri02,
Your theme seems to add the box-shadow to all buttons, which also applies to the Complianz buttons in the Cookie Banner. You can add the below CSS to Appearance > Customize > Additional CSS to remove/override these.
button.cmplz-btn {
-webkit-box-shadow: unset!important;
box-shadow: unset!important;
}
Kind regards, Jarno
Thread Starter
jiri02
(@jiri02)
Hi @jarnovos, perfect, thank you. Is it possible to set the text color to not change when the cursor is on the button (It moves through the buttons)?
Best regards, Jiri
Plugin Author
Aert
(@aahulsebos)
@jiri02
button.cmplz-btn.cmplz-deny:hover,
button.cmplz-btn.cmplz-view-preferences:hover,
button.cmplz-btn.cmplz-save-preferences:hover {
color: black !important;
}