Can't remove "date format:MM slash DD slash JJJJ"

Hi Guys,

So for some reason I can’t remove this description/text. How can I do this?!

Schermafbeelding 2020-05-03 om 15.40.53|690x187

Gravity Forms will not output that text beneath a date field with the datepicker enabled. Is that text entered in the field “description”? If so, you can remove it from there. If it’s not there, it could be coming from some other software on your site. Please let us know what you find. Thank you.

Hi Chris,

Thank you for your answer. Unfortunately the output of the text is not in the description. When we are checking the problem with google inspect (see image), we can see it has something to the with the screen reader text. Maybe this has some kind of impact on the datepicker? I hope to hear soon from you!

Thank you for that additional research. That screen reader text should not be visible on screen. It looks like you have the Gravity Forms CSS Output set to off? If so, that is why you see that text. You can add this CSS to your own stylesheet to hide that text in the Gravity Forms form:

.gform_wrapper .screen-reader-text, 
.gform_wrapper label.hidden_sub_label {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

That hid it for me on your website: (screenshot)