• Resolved hamil

    (@hamil1)


    Please advise how to change the color of the individual buttons of the AMP cookie banner. For example Accept #1E73BE, Dismiss #f9f9f9.
    Thank you in advance.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Aert

    (@aahulsebos)

    Hi @hamil1,

    This should work for CSS on your buttons.

    /* Left button */
    #cmplz-consent-ui button:nth-child(even) {
        background-color: #1E73BE;
        color: #fff;
        padding: 6px 11px;
        margin: 8px
    }
    /* Right button */
    #cmplz-consent-ui button:nth-child(odd) {
        background-color: #f9f9f9;
        color: #333;
        padding: 6px 11px;
        margin: 8px
    }
    Thread Starter hamil

    (@hamil1)

    It’s working. Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘AMP buttons colour’ is closed to new replies.