Skip to main content
Nintex Community Menu Bar

Ugly Content Label appearing at the bottom of my Nintex Form

  • February 16, 2017
  • 2 replies
  • 16 views

Forum|alt.badge.img+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

Forum|alt.badge.img+9
  • Author
  • February 16, 2017

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.


rhia
Nintex Partner
Forum|alt.badge.img+15
  • Nintex Partner
  • February 17, 2017

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..)