Text input field width - configurable list

  • martinbond
    Asked on February 28, 2015 at 7:31 AM

    Hi,

    What is the code to adjust the text input field width on configurable list, not just the column width but the actual input area. see attached screenshot. Text input field width   configurable list Image 1 Screenshot 20

  • Sean
    Replied on February 28, 2015 at 10:59 AM

    You can adjust the size of the textbox within a column by using the code below.

    td.col1 input[type="text"]{
     width:250px;
    }

    You should change the .col1 to which ever column text box you would like to adjust and you can adjust the size as you desire by increasing and decreasing the 250px value.

    Base on the screenshot provided your first column would be Key Decision maker and the above CSS code should work on all the text box that fall under that column. As you move along the column number should increase by one. Example Relevant years experience... should be .col2

    Do let us know if our assistance is needed further.


    Cheers!

  • Sean
    Replied on February 28, 2015 at 11:46 AM

    You should ensure that the above CSS code is injected into the Custom CSS field settings for the configurable list. Like shown below.

    Text input field width   configurable list Image 1 Screenshot 20