Home Forums WoodMart support forum Mailchimp chenge color more bright

Mailchimp chenge color more bright

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #111817

    afc90
    Participant

    How to change the colors and use bold of the input email and name fields in mailchimp form?

    Also, how to resize the width of the input folders?

    #111883

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=text]::-moz-placeholder { /* Firefox 19+ */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=text]:-ms-input-placeholder { /* IE 10+ */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=text]:-moz-placeholder { /* Firefox 18- */
      color: red;
      font-weight:bold;
    }
    /**/
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=email]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=email]::-moz-placeholder { /* Firefox 19+ */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=email]:-ms-input-placeholder { /* IE 10+ */
      color: red;
      font-weight:bold;
    }
    .page-template-maintenance .mc4wp-form .mc4wp-form-fields input[type=email]:-moz-placeholder { /* Firefox 18- */
      color: red;
      font-weight:bold;
    }

    Replace “red” with the color as per your needs.

    Best Regards

    #111889

    afc90
    Participant

    Thank you! Appreciated.

    #111952

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Mailchimp chenge color more bright’ is closed to new replies.