Area code and phone number text is on different lines

  • redrhino33
    Asked on July 18, 2016 at 4:30 PM

    In jotform, they are on the same line, though once embedded they are on different lines. Is there a solution for this? Thank you for any suggestions.

  • David JotForm Support Manager
    Replied on July 18, 2016 at 5:53 PM

    Please inject the following CSS code:

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

    #id_3 span:first-child{

        width: 25% !important;

    }

    #input_3_area {

        width: 70% !important;

    }

    #id_3 span{

        width: 72% !important;

    }

    }

    This should fix it: 

    Area code and phone number text is on different lines Image 1 Screenshot 20

    Let us know if you need more help.

  • redrhino33
    Replied on July 19, 2016 at 10:31 AM

    It works, thank you!