view from full screen to mobile device?

  • StevenClark
    Asked on December 28, 2017 at 4:32 PM

    How do I get the page I just built to look good on a mobile device?

  • Adrian
    Replied on December 28, 2017 at 6:45 PM

    Add this CSS code to your form:

     

    @media (max-width: 767px) {

        .form-all {

            margin-left: auto;

            margin-right: auto;

        }

        .form-section {

            padding: 0 10px;

        }

    }

     

    Click the following link to see a guide How to Inject Custom CSS Codes

    After you Inject that CSS Code to your Form, it should look good on mobile devices as well.