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

Question

Question

How to use CSS to change color of one specific field label

asked on December 4, 2017

Hello,

 

I have a user who is attempting to utilize CSS to change one specific field label to red. Does anyone have any specific CSS or Javascript that we could use to get the desired effect?

 

Thanks!

0 0

Replies

replied on December 4, 2017 Show version history

You can use any of the below to color a specific label in a form

#q3 is the target (Field you want to change the color of) by color name, RGB values or Hex values

#q3 label {color:red;}

#q3 label {color:rgb(255, 99, 71);}

#q3 label {color:#ff6347;}

2 0
replied on December 4, 2017

Thank you!

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

Sign in to reply to this post.