How to display ticket fields in multiple columns

Answered

1 Comments

  • Ifra Saqlain
    Community Moderator
    Most Engaged Community Member - 2022
    Most Engaged Community Member of The Year - 2021

    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

    Team

     

    0

Please sign in to leave a comment.

Powered by Zendesk