Ugly Content Label appearing at the bottom of my Nintex Form

  • 16 February 2017
  • 2 replies
  • 6 views

Badge +9

There is an ugly label telling me stuff I don't want to know at the bottom of my published form:

199475_pastedImage_1.png

How do I give it a burial without resorting to CSS or jQuery?


2 replies

Badge +9

I work with a talented professional. His name is Jody Brooks. He replied to my email: Find the CSS in the browser when it displays and then add the CSS to your form--not to display it.

I did and it worked. I added this to the form under Settings==> Custom CSS

table.nf-form-line{
    display: none;
}
table.nf-form-footer{
    display: none;
}

Ugly line gone.

Userlevel 6
Badge +15

Thank you for sharing this! I can definitely see this being helpful for myself down the road.

In your initial post, you said you didn't want to use CSS -- I am glad you saw the light ;D (or, I guess there was no other way..)

Reply