How to change the color of font on a form | Community
Skip to main content
March 25, 2014
Solved

How to change the color of font on a form

  • March 25, 2014
  • 1 reply
  • 1905 views
How do you change the color of the text on a form 2.0?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by
Hi Megan,

If you're trying to change the label color, the only way I'm aware of is to change the css.    Here's how:

Go to Form Settings > Form Theme

Then click the gear at the top right (under finish)

Click "Edit Custom CSS"

in the text box write this one line below:


label {color: #c60c30; }


This changes it to red but you can replace the bold part with whatever hex color you want ( here's a quick guide to colors  http://www.w3schools.com/html/html_colors.asp)

Then click save... You wont see the changes in the edit screen but if do "Preview Draft"  it will show.


1 reply

Accepted solution
March 25, 2014
Hi Megan,

If you're trying to change the label color, the only way I'm aware of is to change the css.    Here's how:

Go to Form Settings > Form Theme

Then click the gear at the top right (under finish)

Click "Edit Custom CSS"

in the text box write this one line below:


label {color: #c60c30; }


This changes it to red but you can replace the bold part with whatever hex color you want ( here's a quick guide to colors  http://www.w3schools.com/html/html_colors.asp)

Then click save... You wont see the changes in the edit screen but if do "Preview Draft"  it will show.


ridhdhi
New Participant
June 19, 2020

Very helpful!