SOLVED

Re: Different Colors for Form Field Caption and Form Fill

Go to solution
Anonymous
Not applicable

Different Colors for Form Field Caption and Form Fill

In the design studio, if I change the font color the white, the text that users enter in the fields also turns white. Does anyone know how to change the form field caption to one color while maintaining the default black form fill text color?

Thanks.
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Add custom CSS code to the form itself that will override your other code.
open the form. go to form settings > form theme > select the gear icon
The code below work well. I also included an image of the form with color for reference.
.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm select.mktoField,
.mktoForm textarea.mktoField{
  -webkit-appearance: none;
    color:#00a0df;
  }
0EM50000000SoNb.jpg

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Add custom CSS code to the form itself that will override your other code.
open the form. go to form settings > form theme > select the gear icon
The code below work well. I also included an image of the form with color for reference.
.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm select.mktoField,
.mktoForm textarea.mktoField{
  -webkit-appearance: none;
    color:#00a0df;
  }
0EM50000000SoNb.jpg
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Shannon,

Thanks for the reply. This seems easy enough, but where can I find "form settings"?

Thanks.
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Click on the form select edit form form settings is #2 on the left hand side bar.
Here is a link to an article that has photos showing how to get to the CSS to edit it..
https://community.marketo.com/MarketoArticle?id=kA050000000LHXhCAO
 
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Thanks, Shannon. I wasn't using Forms 2.0 so I wasn't able to see that, but I got it set up.

Thanks for your help!
Anonymous
Not applicable

Re: Different Colors for Form Field Caption and Form Fill

Glad you were able to get it fixed. Have a great weekend.