Centering the text on submit button

  • lyricolorado
    Asked on September 18, 2016 at 7:58 AM

    hey guys,

     

    you are great, and i appreciate all the help.  a few minor improvements for my volunteer info sheet form that i can't figure out:

    -i can't get the text on the submit button to be centered

    -

    i would like text for the second line for some radio buttons, to not be below the circle, inline with the starting text.  what's that called, like a reverse indentation

    -

    i would like the text box for the hidden field, I observed a presentation taught by, to have that little white intent line like the other boxes have

    thanks!

  • Jan
    Replied on September 18, 2016 at 8:50 AM

    I can't get the text on the submit button to be centered

    There's a CSS code (::after) that pushes the text "Submit" towards the left. You can fix that by inserting this CSS code to the form:

    .form-submit-button:after {
    display: none !important;
    }

    .form-submit-button {
    width: 140px !important;
    height: 33px !important;
    }

    Here's a guide on how to inject custom CSS to the form. Here's the result:

    Centering the text on submit button Image 1 Screenshot 20

    I would like text for the second line for some radio buttons, to not be below the circle, inline with the starting text.  what's that called, like a reverse indentation

    I need to create a separate thread for this issue, please refer to this URL: https://www.jotform.com/answers/935181.

    I would like the text box for the hidden field, I observed a presentation taught by, to have that little white intent line like the other boxes have.

    I need to create a separate thread for this issue, please refer to this URL: https://www.jotform.com/answers/935182.

    Hope that helps. Thank you.