• Resolved webwizz

    (@webwizz)


    Hi,

    Can you tell me if there is a way to clear the placeholder text (which is added using the Format Dynamically option) when someone clicks into the field? As it is now they have to clear the number that is there. I would like it that when a user clicks into the field the number disappears.

    Thanks – great plugin.

    Geraldine

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @webwizz,

    You simply should tick the checkbox: “Use predefined value as placeholder.” below the textarea for entering the “Predefined Value” in the field’s properties.

    Best regards.

    Thread Starter webwizz

    (@webwizz)

    When I do that the placeholder text doesn’t show in the form. It’s just blank.

    Geraldine

    Plugin Author codepeople

    (@codepeople)

    Hello ,

    The placeholder are there, but they are being hidden by the styles defined in the theme active on your website. Please, enter the following style definition into the “Customize Form Design” attribute in the “Form Settings” tab (https://cff.dwbooster.com/images/documentation/form-settings-tab.png)

    
    *::-webkit-input-placeholder {
        color: red !important;
        opacity: 1 !important;
    }
    *:-moz-placeholder {
        /* FF 4-18 */
        color: red !important;
        opacity: 1 !important;
    }
    *::-moz-placeholder {
        /* FF 19+ */
        color: red !important;
        opacity: 1 !important;
    }
    *:-ms-input-placeholder {
        /* IE 10+ */
        color: red !important;
        opacity: 1 !important;
    }
    

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Clear placeholder text’ is closed to new replies.