Skip to main content
1-Visitor
December 19, 2017
Question

How to change font height and color for 2D label

  • December 19, 2017
  • 1 reply
  • 2749 views

How to change font height and color for 2D label

1 reply

17-Peridot
December 19, 2017

Hi Srinivas,

Please follow the below instructions to change font size and color for 2D label:

  • In the label properties, copy the class name. You can use the default class-name or define a new name. If you choose the default class-name, it will be applied to all the labels in the application. If you want to change the styles for only a specific label, then use the unique class name for that label.

  • In the Project pain, expand the Styles option and Select Application.
  • This will open an editor view where you can enter the CSS code for your experience.

Hope this helps!

skorlam1-VisitorAuthor
1-Visitor
December 20, 2017

Thank you Yamini. 'STYLES>Application' worked. I even added font weight to make it look bold.

.simple-label {

  color: White;

  font-size: 14px;

  font-weight: 600;

}

Regards,

Srinivas