You may need to add custom CSS for a specific form field. Here are some steps that you need to follow.
- Navigate to weForms > All Forms > Add a new form or Edit an existing form.
- Add a field to the form (e.g Text field)
- Click on edit icon for editing Text field
- Under the Advanced Options, there is an input field called CSS Class Name. Provide a class name for this field (e.g my-custom-css).
- Now, inside the theme’s style.css file, add your custom CSS for that class selector.
Example:
[css]
li.my-custom-css .wpuf-fields input#text_655 {
padding: 10px;
width: 50%;
}
[/css]