Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Contributor jarnovos

    (@jarnovos)

    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

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    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.

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    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;
    }
    Thread Starter hayleen

    (@hayleen)

    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.
    Plugin Contributor jarnovos

    (@jarnovos)

    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

    Thread Starter hayleen

    (@hayleen)

    One would think that is the issue but unfortunately it is not. It is the first thing I tried. No Header Title on mobile. :/

    Plugin Contributor Aert Hulsebos

    (@aahulsebos)

    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

    Thread Starter hayleen

    (@hayleen)

    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.
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Complianz 6.0 – Visual bugs’ is closed to new replies.