Submit Button: Changing the Font Color

Anonymous
Not applicable

Submit Button: Changing the Font Color

I created a landing page that  the background color is a very dark blue. I changed the text on the form fields to white so that you can see them. The problem is, the text ont he submit button is also white, and you can't see it.

I found the help article on changing the submit button, and tried adding an HTML edit to create a custom button, but that didn't work.

Is there a way to just change the font color of the submit button whithout chaging the color of all of the font on form?
Tags (1)
1 REPLY 1
Anonymous
Not applicable

Re: Submit Button: Changing the Font Color

Maybe drag out an HTML box onto your page and add in the following code:

<style type="text/css">
#mktFrmSubmit {
    color: #000000 !important;
    font-size: 13px;
</style>

#000000 is the hex code for the color black. Google around for "hex code colors" if you need something other than black.