Skip to main content
Nintex Community Menu Bar
Question

Background color

  • July 9, 2024
  • 1 reply
  • 14 views

Forum|alt.badge.img+3

I have a Field Editor with 2 columns , when i preview this page the columns display a grey background behind the fields. How do i change the color so that the background is white?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+18
  • 2192 replies
  • July 10, 2024

To change all of your field editors, clone your theme and change it in the theme builder.

To change just one field editor, give your field editor a CSS class (like “make-my-background-white” or something) and put some custom CSS on your page, like this:

&#46;make-my-background-white &#46;nx-basicfieldeditor-section-header, &#46;make-my-background-white &#46;nx-basicfieldeditor-item {<br />&nbsp; &nbsp; &nbsp;background: white;<br />} 

(This assumes you want both the header and the field area backgrounds to both be white)