cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

How to change font size and color of a 2D label?

csnyder
1-Newbie

How to change font size and color of a 2D label?

How can you change the font size and color of a 2D label? I am using my 2D label to update instructions, but it's extremely hard to read the small font. I don't see how to do it from the UI editor, are there javascript options? Currently use javascript to update the text content on each step of a sequence.

1 ACCEPTED SOLUTION

Accepted Solutions
rabernathy
6-Contributor
(To:csnyder)

You can make a custom css class (in the application editor) and enter the name of the class in the class field of the label:

.YourClassNameHere {

     font-size: 15px;

     color: #515859;

}

View solution in original post

1 REPLY 1
rabernathy
6-Contributor
(To:csnyder)

You can make a custom css class (in the application editor) and enter the name of the class in the class field of the label:

.YourClassNameHere {

     font-size: 15px;

     color: #515859;

}

Top Tags