Input Table Column Width

  • elementrecruiting
    Asked on June 27, 2019 at 10:19 AM

    Hello,

    I am having trouble getting the width of the columns in my input table to display correctly on mobile without the words getting broken up. It appears correctly in all other formats. 


    Thank you! 

    Jotform Thread 1872636 Screenshot
  • AndrewHag
    Replied on June 27, 2019 at 11:58 AM

    Please try the CSS code below:

    @media screen and (max-width: 480px){

    th.form-matrix-column-headers {

          width: 25px !important;

          min-width: initial !important;

      }

      .form-matrix-row-headers{

        word-break: break-word !important;

      }

    }

    Here is the guide: How-to-Inject-Custom-CSS-Codes

  • elementrecruiting
    Replied on June 27, 2019 at 3:53 PM

    Thank you!