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:
- In the Plumsail Forms app, click on the content tag ('ticket-title' in this case).
- From the menu on the right side, expand the menu and assign the class name to this tag in the field "Class"
- Go to CSS tab on the top of the screen, add the code:
.classname{
white-space: nowrap;
}
4. Save changes.
1 Like