Form is not being responsive

  • State8Motorcycles
    Asked on May 4, 2017 at 4:32 PM

    Hello,

    I created a 3 column form here: https://form.jotform.com/71197044474964

    I have checked the make this form responsive box but it does not condense for mobile or tablet.


    Can you help?

  • David JotForm Support Manager
    Replied on May 4, 2017 at 5:35 PM

    Please inject the following code to fix the mobile issue: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

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

    #id_3,#id_4{

        width: 100% !important;

    }

    }

    For the iPad or table view, inject this code:

    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { 

    #id_3,#id_4{

        width: 100% !important;

    }

    }

    Let us know if you need more help.