How can I align the field "COMPANY" with the other fields in this column and double the height of the text area

  • corelight
    Asked on January 4, 2017 at 3:29 PM

    The Company field is not aligned with the other field in the far right column. Also, I want to double the height of the open text area at the bottom left of the form.  

  • Kevin Support Team Lead
    Replied on January 4, 2017 at 5:39 PM

    To align the "Company" field, please inject this CSS code to your form: 

    li#id_23 {

        padding-left: 17px !important;

    }

    Regarding to increase the text area height, I would suggest you to first inject this CSS code: 

    textarea#input_8 {

        height: auto;

    }

    Then change the field's height by clicking on it and on rows option on the top toolbar: 

    How can I align the field COMPANY with the other fields in this column and double the height of the text area Image 1 Screenshot 20

    This guide will help to inject the code: How-to-Inject-Custom-CSS-Codes

    If you have any question, let us know.