How to display ticket fields in multiple columns
AnsweredI think the width occupied by the ticket field in the ticket form is very wide.
The width of the ticket field always occupies 100% of the width of the ticket form.
I'm just looking for someone who knows how to adjust the width of the ticket field so that it can be displayed in multiple columns.
I want a solution like below.
Anyone have any ideas?
-
Hi jihoon lee, you just need to copy field ID and add width to it,
by default it's 100%
You can get your solution via CSS:
Add flex properties to your main form wrapper.
#new_request{
display: flex;
flex-wrap: wrap;
}Now copy your fields IDs:
And add CSS:
#request_custom_fields_44415505,
#request_custom_fields_44415589 {
width: 45%;
margin-right: 10px;
}Output would be like this:
You can do like this for other fields, there is another way to get your solution. If any confusion feel free to ask:)
Thanks
Please sign in to leave a comment.
1 Comments