You are viewing limited content. For full access, please sign in.

Question

Question

How to change the text color for a field label - new Forms designer.

asked 18 hours ago

How do I change the text color for a field label in the new Forms designer?

0 0

Answer

SELECTED ANSWER
replied 15 hours ago

1. Select the Field to change the label color.

2. Click the 'Advanced' tab and add a CSS Class such as "LabelGreen"

3. Click to edit the Form's CSS

4. Add CSS to specify the color you want to set the <label> inside the field to be.

.LabelGreen label
{
  color: green;
}





In the CSS you can either use Hex code #RRGGBB or a recognized named color. For details on named colored see: https://www.w3schools.com/cssref/css_colors.php

You can use the same CSS class for any fields you want to use the same color or add more CSS Classes for different colors.

 

1 0

Replies

replied 15 hours ago

Perfect.  Thank you.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.