Submit button color theme not applied correctly

  • choreo
    Asked on October 27, 2020 at 12:05 AM
    2) The Submit Button seems to use the "gold-color" style for the hover and down states, but it just is black with white text in the unchecked state? How can I make that button stand out more before it is clicked?
  • Kiran Support Team Lead
    Replied on October 27, 2020 at 12:29 AM

    The issue seems to be theme applied to the form. You may try adding the following CSS code to the form to change the background color of the Submit button to Gold color.

    .form-all .form-submit-button {

      color: #d85d00 !important;

      background: #ffab23;

    }

    You may also try resetting the theme on the form and then make changes again to the form such as changing the form background, width so that the default settings shall be applied automatically.

    Thanks!

  • choreo
    Replied on October 27, 2020 at 1:12 AM

    Kiran,

    Thanks... that worked! All set now!