I would like to have the option to add custom css classes on form fields so they are easier targetable which will also make it safer for the forms not to break in future GHL updates. Right now there is no option to add custom classes to form fields which makes it very hard to maintain custom CSS added to forms especially if you have lots of clients and different number of fields for each one of them. So for example let's say we have 2 forms and we want to add some custom css to a field that we call "Rate Us".
The first client has these fields in their form:
  • Full Name
  • Phone
  • Address
  • Rate Us
The second client has these fields in their form:
  • Full Name
  • Phone Address
  • Rate Us
In this case we would have to "hard target" the fields "Rate Us" by adding :nth-child(4) and :nth-child(3) . This makes it impossible to quickly copy-paste css code between forms. It also breaks the forms when GHL makes updates on the forms and they change the HTML structure.
Instead it would be a lot easier and safer to have the ability to add a custom css class to the fields. That way we could give the "Rate Us" field a custom css class for example .rate-us which would make the css that we write more portable, easier and safer to manage and maintain.