Skip to main content
Nintex Community Menu Bar

CSS - How Do I Change the Background Color of a Panel?

  • November 21, 2018
  • 5 replies
  • 105 views

Forum|alt.badge.img+9

I've tried using a separate CSS class but it doesn't work...

5 replies

Forum|alt.badge.img+9
  • November 21, 2018

Use Background fill color in Panel settings:

221397_pastedImage_1.png


Forum|alt.badge.img+7
  • Novice
  • November 21, 2018

The CSS would be:

fieldset { background-color: rgb(200, 200, 200); }

Or if you prefer to define a class for your panel (e.g. 'foo'):

fieldset.foo { background-color: rgb(200, 200, 200); }

Forum|alt.badge.img+9
  • Author
  • November 21, 2018

Now how simple was that? I was certainly overthinking it!!!


Forum|alt.badge.img+9
  • Author
  • November 21, 2018

Very useful to know...thank you!


Forum|alt.badge.img+7
  • Novice
  • November 26, 2018

Just in case others might be searching for this in future, the answer marked as "correct" does not show you how to change a panel's background colour using CSS (as per the subject of the thread). Rather, it shows how it can be done via the form designer toolbar.

So, if you're wanting to know how to change the background colour of a panel using CSS, then refer to my answer above.