How do I increase the width of the fields and drop down menus?

  • koypo
    Asked on April 3, 2017 at 4:54 PM
    How do I increase the width of the fields and drop down menus?
  • Jan
    Replied on April 3, 2017 at 5:39 PM

    You can adjust the width by using custom CSS. Here's the code:

    /* Drop down */

    .form-dropdown {
    width: 300px !important;
    }

    /* Regular text fields */

    .form-textbox {
    width: 300px !important;
    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Here's there result:

    How do I increase the width of the fields and drop down menus? Image 1 Screenshot 20

    Let us know if you have any questions. Thank you.

  • koypo
    Replied on April 4, 2017 at 5:57 AM

    Thanks Jan,

    Thats super helpful.

    How do I increase the height? 

    Thanks 

     

    George

     

  • liyam
    Replied on April 4, 2017 at 8:31 AM

    For textboxes you can use line-height, while in dropdown fields you can use height.

    Example:

    .form-textbox {
       width: 300px !important;
       line-height: 30px;
    }

    .form-dropdown {
       width: 300px !important;
       height: 30px;
    }

    If you have additional questions, please let us know.

    Thanks.