Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #378952

    mlsuffo
    Participant

    Hi

    I am just trying the mailchimp plugin and just have a couple of problems –

    how to change the colour of the placeholder text and
    the button is just slightly off center.

    Could you point me in the right direction?

    Many thanks

    Martin

    #378953

    mlsuffo
    Participant
    This reply has been marked as private.
    #379124

    Jade
    Moderator

    Hi Martin,

    You can add this under Custom > CSS in the Customizer.

    /* To change the placeholder text color */
    
    ::-webkit-input-placeholder {
        color:    #999;
    }
    :-moz-placeholder {
        color:    #999;
    }
    ::-moz-placeholder {
        color:    #999;
    }
    :-ms-input-placeholder {
        color:    #999;
    }
    
    /* For the button */
    
    #x-subscribe-form-55 .x-subscribe-form input[type="submit"] {
        margin-left: 0;
    }

    Hope this helps.

    #379610

    mlsuffo
    Participant

    Hi

    Thanks for getting back. I entered that but nothing seems to have changed. Still can’t change placeholder text color and button is still misaligned?

    Many thanks

    Martin

    #379615

    Thai
    Moderator

    Hi There,

    Please update the previous CSS a bit:

    .text-white h2,
    .text-white p,
    .text-white .x-btn {
      color: #fff;
    }
    
    .text-white .x-btn {
      border-color: #fff;
    }
    
    .text-white .x-btn:hover {
      opacity: 0.75;
    }
    /* For the button */
    
    .x-subscribe-form input[type="submit"] {
        margin-left: 0;
    }
    
    /* To change the placeholder text color */
    ::-webkit-input-placeholder {
        color: #000 !important;
    }
    :-moz-placeholder {
        color: #000 !important;
    }
    ::-moz-placeholder {
        color: #000 !important;
    }
    :-ms-input-placeholder {
        color: #000 !important;
    }

    Hope it helps.

    #379617

    mlsuffo
    Participant

    Pefect, thank you. Cheers Martin

    #379620

    Thai
    Moderator

    You’re most welcome 🙂