How to make the input table mobile responsive?

  • topprime
    Asked on August 27, 2019 at 9:59 PM

    Hey guys, how can i make it responsible?

  • Kevin Support Team Lead
    Replied on August 27, 2019 at 11:47 PM

    Unfortunately, it's not possible to make the element mobile responsive due to the structure, it's actually an HTML table which is not mobile responsive, but as an alternative, you may inject the following CSS code and display the table with a scrollbar: 

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

    [data-type="control_matrix"] div[id*="cid"] {

        overflow-x: auto;

    }

    }

    This guide will help you adding the code to your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    I hope this helps.