Hi @hayleen,
Could you provide an URL to the site in question, so we can look into this? I expect that your theme adds CSS that might influence certain elements in the banner as well, such as the line-height of the button texts, causing these to appear off-centered.
Just let me know, and we’ll gladly investigate.
Kind regards,
Jarno
Hi @hayleen,
regarding the text on the buttons, your theme overrides the line height on the buttons. Please add the following custom css:
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
line-height:20px;
}
This will be included in the next update.
Hi @hayleen,
I see the button text is now resolved, great!
Regarding the header title: this is hidden on mobile, to preserve space. To show it anyway, you can use:
.cmplz-cookiebanner .cmplz-header .cmplz-title {
display:block
}
The font-size for the banner message is a design choice. But you can of course adjust this, by adding:
.cmplz-cookiebanner .cmplz-body .cmplz-message {
font-size:14px;
}
Thanks for the superb support.
Unfortunately one part does not work for me.
.cmplz-cookiebanner .cmplz-header .cmplz-title {
display:block
}
Pasted this to additional CSS but do not see it when viewing apotekos.com, the Header Title is not displayed as intended.
-
This reply was modified 2 years, 11 months ago by hayleen.
Hi @hayleen,
Concerning the header, please try with the below CSS. I think the missing ;
might’ve been the issue.
.cmplz-cookiebanner .cmplz-header .cmplz-title {
display:block;
}
Kind regards,
Jarno
One would think that is the issue but unfortunately it is not. It is the first thing I tried. No Header Title on mobile. :/
Hi @hayleen,
Brute force:
@media (max-width: 425px) {
.cmplz-cookiebanner .cmplz-header .cmplz-title {
display: block!important;
}
}
Works as expected here; https://upgradehidden.us2.instawp.xyz/
regards Aert
Thanks a lot for the help. Works now.
Ps. I have used both WebToffee GDPR Cookie Consent and Cookiebot, which were OK, but the experience at Complianz made me switch instantly!
All the best to you and the team.
-
This reply was modified 2 years, 11 months ago by hayleen.