Modifying the <ticket-title> field in forms

Hello.
I have a ticket form created in Plumsail Forms app. I want to modify the field so that it won't wrap the text in the place of ticket ID. The string "#QAD Ticket ID 244 8:51 AM" should display in a single line, there shouldn't be any breaks. How can I achieve this?

Managed to fix this issue by doing the following steps:

  1. In the Plumsail Forms app, click on the content tag ('ticket-title' in this case).
  2. From the menu on the right side, expand the menu and assign the class name to this tag in the field "Class"
  3. Go to CSS tab on the top of the screen, add the code:

.classname{
white-space: nowrap;
}
4. Save changes.

1 Like