Can I style two columns of my checkboxes?

  • mimiramirez
    Asked on December 13, 2016 at 9:30 AM
    i have the same issue, i want to modify two specif colums , how can i do this?
  • seth
    Replied on December 13, 2016 at 10:00 AM

    Hello,

    It is hard to understand your inquiry. Could you please tell us your form ID, the fields that you want to style and how would you like to style it?

    We are awaiting your response.

    Regards.

  • mimiramirez
    Replied on December 13, 2016 at 10:56 AM

    yes , here is the link of my form : https://form.jotformeu.com/63426172819359

    if you go to the question 2.4, there is a matrix with fields to write in, but the name colum should be wider than the following two columns since they are only get answers in two digit numbers.

    so the idea is making the name column wider so people can put projects name there and the other colums thiner

     

    also another problem i had when introducing css code is that when incresing colums, it affects all my matrixes in my survey and not only the one i just ant to modify, how can i make this codes affecting all my matrixes?

     

    hope this helps :)

  • John_Benson
    Replied on December 13, 2016 at 12:34 PM

    Please try to inject this custom CSS code to your form:

    .form-matrix-row-headers +
    .form-matrix-values .form-textbox { 
    width: 400px !important;

    .form-matrix-row-headers +
    .form-matrix-values +
    .form-matrix-values .form-textbox { 
    width: 50px !important;

    .form-matrix-row-headers +
    .form-matrix-values +
    .form-matrix-values +
    .form-matrix-values .form-textbox { 
    width: 50px !important;

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

    Please take note that you can change the 100px width to your own preferences. 

    Result:

    Can I style two columns of my checkboxes? Image 1 Screenshot 20

    Hope that helps. If you need further assistance, please let us know. Thank you.