Can i change the color or hide the red star retaining the functionlity?

  • doron200
    Asked on April 13, 2017 at 10:52 AM
    can i change (colour) or remove the red star but at the same time retaining the 'required' functionality ?
  • candy
    Replied on April 13, 2017 at 11:04 AM

    Hello,

    You can hide the "required star/asterisk" in the field by injecting custom CSS. Please insert the CSS code below:

    .form-required {

    display: none !important;

    }

    Also, you can change the color of the "required star/asterisk" in the field by injecting the following CSS code below:

    .form-required {

    color: #000000 !important;

    }

    The required functionality will be retain.

    I hope this helps.

    Thanks.