Unknown Submit button customisation

  • johnsonvillemedicalcentre
    Asked on December 14, 2017 at 7:14 PM

    Hi there, 

    The submit button on one of my forms is not obeying the basic formatting that is set on it. It is a duplicate form which may have custom CSS on the submit button on the original form, but I've removed all applicable CSS that I could find and it hasn't resolved the issue. Are you able to identify what is causing the submit button to format differently?

    Cheers, 


    Rob


  • Marvih
    Replied on December 14, 2017 at 9:07 PM

    It is because the form is using a Theme.

    In your form Designer, you can use the Default Theme and use the ADVANCE DESIGNER to be able to better customize your form button.

    Unknown Submit button customisation Image 10

    You can also manipulate it using CSS code, for example you want it to have Gray background color. You can add the code below in your Custom CSS

    .form-submit-button, #input_235 {

       background : grey !important;     

       border-color: : transparent !important;

       border-style: none !important;

       border-radius: none !important;

    }

    It will look like this

    Unknown Submit button customisation Image 21

    Let me know if you need further help/adjustments.