Viewing 1 replies (of 1 total)
  • Plugin Contributor jarnovos

    (@jarnovos)

    Hi @loge99,

    I see that you had also reached out to us by e-mail with a similar question, my colleague provided you with CSS to re-enable the title and place the logo above it, on mobile viewports.

    For larger screen sizes you could use CSS like the below. Example screenshot here.

    @media (min-width: 769px) {
    .cmplz-cookiebanner .cmplz-header .cmplz-logo {
        order: unset;
        grid-column-start: 2;
        
    }
    .cmplz-cookiebanner .cmplz-header .cmplz-title {
        grid-row: 2;
        grid-column-start: 1;
        grid-column-end: 4;
    }
    }

    Hope it helps!
    Kind regards,
    Jarno

Viewing 1 replies (of 1 total)
  • The topic ‘Logo Above Title in Cookie Banner’ is closed to new replies.