Assistance with Updating Width of Forms Questions.

  • dinevent
    Asked on June 21, 2019 at 5:43 PM

    Hello!

    I have this form and can't figure out how to get the questions and labels to match the full-width of the form.

    Many thanks!

  • Jed_C
    Replied on June 22, 2019 at 1:58 AM

    You can increase the width of your input field in Form Designer. Please check my screencast below on how you can adjust the width.

    1561182972input width Screenshot 10

    And for the email field, just inject the CSS code below.

    input#input_6 {

        width: 595px;

    }

    I hope that helps. Let us know if you have any questions or if you need further assistance. 

  • dinevent
    Replied on June 22, 2019 at 9:02 PM

    Hi! Thanks for the quick response. It's not the text box size I'm trying to widen - it's the width of the form questions. The questions should fit on a single line across the width of the form, but instead, they run onto two lines because the width isn't set wide enough. Please advise. 

  • Nik_C
    Replied on June 23, 2019 at 4:08 AM

    Please insert this CSS to your Custom CSS form:

    .form-label {

        width: 400px!important;

    }

    That should fix your issue.

    Thank you!

  • dinevent
    Replied on June 23, 2019 at 7:28 PM

    Thank you!!