Change Font Color on Submit Button

  • AlperCayhan
    Asked on October 16, 2014 at 10:04 AM
    Another question: how can I change the fontcolour of the "submit" button into #42c5be ?
  • KadeJM
    Replied on October 16, 2014 at 12:11 PM

    You can now easily apply your custom font color to the submit button with our new form designer.

    To do so just select the form designer in your formbuilder for the mentioned form.

    Once you are inside it select the from button then change it's font color.

    Change Font Color on Submit Button Image 1 Screenshot 20

  • AlperCayhan
    Replied on October 16, 2014 at 2:29 PM

    Thanks a lot, I will try this now.

  • Ben
    Replied on October 16, 2014 at 3:40 PM

    Hi,

    Great to hear that. Please let us know about your experience with the new Form Designer.

    Best Regards,
    Ben

  • AlperCayhan
    Replied on October 16, 2014 at 3:42 PM

    It doesn't work at all.

    Because of a CSS issue I guess.

  • KadeJM
    Replied on October 16, 2014 at 4:34 PM

    Sorry about that. 

    I think there might be a conflict in the coloring which is probably affecting it.

    Please try using injected css to see if this makes any difference. You can leave out the font-weight bold if line if you don't need it.

    Code:

    .form-submit-button {

    color: #42c5be;

    font-weight: bold;

    }

     

    Result:

    Change Font Color on Submit Button Image 1 Screenshot 20

     

  • AlperCayhan
    Replied on October 16, 2014 at 4:38 PM

    Doesn't work... :-( This is what I have:Change Font Color on Submit Button Image 1 Screenshot 20

  • KadeJM
    Replied on October 16, 2014 at 5:25 PM

    Ah yes, that's as I mentioned which is actually a contrasting problem because of the existing coloring used between your form theme as well as the fact that you're using a different submit button style.

     

    Try this Updated Code instead:

    button#input_10.form-submit-button.form-submit-button-big_white {

    color: #42c5be;

    font-weight: bold;

    }

     

    Updated Result:

     

    Change Font Color on Submit Button Image 1 Screenshot 20

  • AlperCayhan
    Replied on October 17, 2014 at 3:04 AM

    Great, this works, thanks a lot!