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

    Hi there,
    I’m using the Enfold theme and have added the mailchimp form from the content elements.
    Now I would like to customize the mailchimp newsletter form, so that

    1. the form dosn’t show label texts above the input fields (e.g. name, email-address) – how can I remove the labels above the fields?
    2. Instead of labels above I would like to (only) show placeholder texts inside the fields. The placeholder texts should be grey for all fields with the font family ‘Roboto’, font size: 10px.

    Could you please provide me with the CSS that I could add to the quick CSS section in General stylings to achieve these changes?
    Many thanks!

    #1004465

    Hey sandrameyer,
    To hide the form labels open your mailchimp element & go to the form styling tab and check the Hide Form Labels box:2018-09-01_150024
    This will make the form use gray placeholder text instead.
    To change the font, Please try this code in the General Styling > Quick CSS field:

    ::-webkit-input-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    :-moz-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    ::-moz-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    :-ms-input-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }

    Best regards,
    Mike

    #1004486

    Hi Mike,
    it works – you made my day, many thanks!!
    Best,
    Sandra

    #1004509

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Show placeholder texts in mailchimp newsletter form (Enfold) + remove label text’ is closed to new replies.