How do I edit the size of the submit, clear form and print buttons?

  • joydroessler
    Asked on November 18, 2016 at 1:46 PM
    How do I edit the size of the submit, clear form and print buttons?
  • John_Benson
    Replied on November 18, 2016 at 2:14 PM

    You can resize the width of your submit, clear form and print buttons by adding this custom CSS code:

    .form-submit-button { 

        width : 25% !important;

    .form-submit-reset { 

        width : 25% !important;

    .form-submit-print { 

        width : 25% !important;

    }  

    Here's a guide: How-to-Inject-Custom-CSS-Codes

    Let us know if you need further assistance. Thank you.