Page border of Nintex form is showing up partially and kind of incomplete. All 4 edges are not appearing properly with the form. Form borders are not adjusting automatically with the page height and width. This looks odd when pdf is generated.
I could solve this by following approaches :
1. Increasing page height and width, so as to show up the missing borders.
2. Other wise, override the following style class with new definition. In my case, the border is not required so that i could hide it altogether. Append this style class in the custom CSS under form setting, so that this gets rendered in the form.
.nf-filler-container
{
border: 0px !important;
}