Formatting issue

  • ronshuller
    Asked on February 6, 2020 at 9:48 AM

    On form -> https://form.jotform.com/63444165265962  

    1. With fields "Do you approve this design" and "Are there any images that need retouching?", there is too much space between

    the 'click' box and the description for each option.

    2. The SUBMIT FORM button is too wide.

    Thanks.


  • Richie JotForm Support
    Replied on February 6, 2020 at 10:16 AM

    You may add this custom CSS to change the margin between the checkbox and field.

    #label_input_68_0,#label_input_68_1,#label_input_68_2,#label_input_81_0,#label_input_81_1{
    margin-left: 10px !important;
    }

    For your submit button you may use this CSS code to adjust the width.

    .form-submit-button{

    width: 200px;

    }

    Guide:https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    Please give it a  try and let us know how it goes.

  • ronshuller
    Replied on February 6, 2020 at 10:50 AM
    Thanks.
    That corrected everything except the size of the submit button when viewed on mobile.
    ...
  • Kevin Support Team Lead
    Replied on February 6, 2020 at 11:56 AM

    Try replacing the code my colleague provided for the submit button with this one:

    .form-submit-button{

    width: 200px !important;

    }

    Let us know how it goes. 

  • ronshuller
    Replied on February 6, 2020 at 12:50 PM
    Thanks, That worked fine!
    ...