Skip to main content

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

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;

}


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


  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


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

Thanks


Reply