How to remove required asterisk in required field?

  • Orilation
    Asked on December 29, 2016 at 9:51 AM

    How do i remove the little star from the required fields

  • Jan
    Replied on December 29, 2016 at 10:28 AM

    If you would like to remove all of the "*" in your form, then you need to insert this custom CSS:

    .form-required {
    display: none;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. This will hide the "*" in the required fields. Please take note that the require fields functionality will still apply.

    Hope that helps. Thank you.

  • Orilation
    Replied on December 29, 2016 at 10:56 AM

    Thanks!