Skip to main content
Nintex Community Menu Bar

remove form lines (cell outlines)

  • June 8, 2016
  • 4 replies
  • 55 views

kmccool
Forum|alt.badge.img+9

Hi everyone!

I've noticed when I create forms there are light blue lines left over from the fields. how do I get rid of these?

185767_pastedImage_0.png

I've set the border to none... and width to zero.

Thanks

Kassie

4 replies

Forum|alt.badge.img+4
  • June 8, 2016

Kassie,

Have you tried removing the border from the CSS Style for that control ?

if you control have any CSS class assigned to it, you can remove it. By default, all controls get the above style attached to it I believe.

we have used this to remove the border and in our CSS style we have removed the border style, we have it as below and the form does not display any border.

.nf-section

{

margin-top: -1px;

}


Forum|alt.badge.img+3
  • December 5, 2017

Hi, I am trying to solve this same issue and cant seem to get rid of the border.
Were you able to find a solution?

Paul G


kmccool
Forum|alt.badge.img+9
  • Author
  • Scholar
  • December 5, 2017

  I did remove the existing CSS and that removed the boarder but it also changes the fields a bit. Did you try that?

Thanks

Kassie


Forum|alt.badge.img+3
  • December 5, 2017

actually - I used .nf-textbox-wrapper input{
border:none
} to remove the border from the input fields and that worked.

Thanks