How Can I format a form to ipad?

  • ronshuller
    Asked on August 11, 2017 at 9:39 AM

    How Can I format a form to ipad aspect ratio- to show full screen?

  • aubreybourke
    Replied on August 11, 2017 at 9:52 AM

    Well you could try the "Mobile Responsive Widget". Just search for it on the widgets tab (left hand side). And then drag and drop it onto your form. It will improve the display of your forms on smaller screens.

    How Can I format a form to ipad? Image 1 Screenshot 20

     

    The iPad has a screen width of 750 pixels in portrait mode. So you could use CSS to customize your form up to 750px. 

    @media screen and (max-width: 750px) {
        body {
            background-color: lightgreen;
        }
    }