Removing "Please select" from dropdown

  • Daniel Auclair
    Asked on September 27, 2020 at 5:35 PM

    Hi,

    In my account I have a Test covid form & a Daily screening form.
    I don't understand why in one the dropdown lists do not show a "Please Select" while the other form does. Yet in the properties, etc. they both appear to be the same.

  • jherwin
    Replied on September 27, 2020 at 9:55 PM

    You can remove that using this CSS code:

    select > option[value=""] {
    display: none;
    }

    Guide: How-to-Inject-Custom-CSS-Codes

    Please give it a try and let us know how it goes.