Problem with submit botton while responsive

  • cappta
    Asked on February 1, 2016 at 8:15 AM

    Hi,

    I put the form in responsive model but when I change my website to mobile, the submit botton is cutting like the image in upload. The for is "Redução de taxa 2"

    Jotform Thread 761466 Screenshot
  • Charlie
    Replied on February 1, 2016 at 11:17 AM

    This seems to be related on the width you have declared on the submit button, it has a width of 720px, which is wider than the normal size of a mobile device.

    Problem with submit botton while responsive Image 1 Screenshot 30

     

    To resolve this, please follow the following steps:

    1. First, decrease the value of the submit button width, in my case I set it to 320px.

    2. After that, use this custom CSS code in your "CSS" tab in the Form Designer Tool.

    button {

        width: 100% !important;

    }

    Problem with submit botton while responsive Image 2 Screenshot 41

     

    Let us know if that works.