Skip to main content
Nintex Community Menu Bar

How are label controls rotated in Nintex forms 2013?

  • November 1, 2016
  • 3 replies
  • 13 views

Forum|alt.badge.img+3

Can someone please explain how to rotate a label control (including text) 90 degrees anticlockwise using custom CSS in Nintex forms 2013?

3 replies

Forum|alt.badge.img+11
  • Scholar
  • November 1, 2016

Hi ,

You can modify the nf-form-label css in the Form Settings and add the following:

transform: rotate (-90deg);

This will rotate the label 90 deg anticlockwise.


Forum|alt.badge.img+3
  • Author
  • November 1, 2016

Thanks Kapil. This works. I just needed to copy the original nf-form-label, rename and include the transform: rotate(-90deg); in the new class as I only needed one vertical label - happy.png


Forum|alt.badge.img+11
  • Scholar
  • November 1, 2016

Great. Please mark the answer as correct so others on the community looking for similar solution can get help.