(Squarespace) How to change (required) to (*) in Form (Use CSS)

To change (required) to (*) in Form with CSS code.

To this.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.

span.description.required {
  visibility: hidden;
}
span.description.required:before {
  visibility: visible;
  content: "(*)";
    color: red;
}

1 Like