Skip to main content
Nintex Community Menu Bar

Workflow Tasks text appearing at the top of a Nintex Approval form

  • November 18, 2019
  • 9 replies
  • 24 views

Forum|alt.badge.img+6

Hi

 

The text "Workflow Tasks" is appearing at the top of the Flexi Task approval form in the approval email.  Not sure why it has suddenly appeared.  Is there a way to remove it.  Have tried adding CSS code to remove a message but that has not made any difference.

 

Thank you for your help.

9 replies

Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • November 19, 2019
Hi,
Are you able to provide a screen shot of the text you are referring to?

Forum|alt.badge.img+6
  • Author
  • November 19, 2019

Hi

Thank you for your help.  Please refer to the enclosed file.


Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • November 19, 2019
Isn't that just the name of the List?

Forum|alt.badge.img+6
  • Author
  • November 19, 2019

Hi

 

No it is not the name of the list.  It has just suddenly appeared.  I think it may be the name of the Workflow Task list but not the name of the list on which the Nintex Flexi Task form is based.  Why would it list the name of the workflow task list?


Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • November 19, 2019
Thats what I meant. Its the name of the Task List.
Is there any custom Javascript on the form?
Are you able to provide an export of the form?
How are you accessing the form? Is it through an email link or directly from the task list or a My Tasks web part etc?

Forum|alt.badge.img+6
  • Author
  • November 22, 2019

Hi

The following Css script is on the Task Form in the Workflow:


/* Template styles *//* Banner/Logo at top of form */
.Nintex-Forms-banner
{
 background: no-repeat fixed left top;
}.nf-form-input .nf-filler-control-inner, .nf-form-label .nf-filler-control-inner
{
top: 10px;
bottom: 10px;
left: 10px;
right: 10px;
}
.nf-form-input .nf-textbox-wrapper
{
left: 0px;
right: 0px;
}/* Label styling for desktop layout */
.nf-form-label
{
    display: block;
    text-align: right;
}
.nf-form-label label
{
padding-top: 1px;
}
/* Button styling */
.nf-button input
{
font-size: 14px;
}.nf-section
{
border-top: 1px solid #d4dbe0;
margin-top: -1px;
}
.nf-section-bottom
{
border-top: 1px solid #d4dbe0;
margin-top: -2px;
}
.nf-item
{
}
.nf-item-alternating
{
background-color: white;
}
/* Mobile styles */
.nf-mobile-form
{
background-color: inherit;
}
.nf-mobile-form .nf-form-input .nf-filler-control-inner
{
top: 4px;
bottom: 10px;
left: 10px;
right: 10px;
}
.nf-mobile-form .nf-form-label .nf-filler-control-inner
{
top: 5px;
bottom: 1px;
left: 10px;
right: 10px;}/* Label styling for mobile layouts */
.nf-mobile-form .nf-form-label
{
 text-align: left;
 
}.nf-mobile-form .nf-form-input
{
border-top: 0px solid transparent;
}/* Out of Dialog styles */
.nf-non-dialog-outer
{
padding: 20px 0px;
}.nf-non-dialog-outer .nf-filler-wrapper-outer
{
margin: 0px auto;
position: relative;
background-color: transparent;
}.nf-non-dialog-outer .nf-filler-wrapper
{
background-color: white;
position: relative;
top: -5px;
left: -5px;
}/* IE 8 designer fix */
.nf-mobile-form #uiDesignerSurface .nf-section
{
border-top: inherit;
margin-top: inherit;
}
.nf-mobile-form #uiDesignerSurface .nf-section-bottom
{
border-bottom: inherit;
margin-bottom: inherit;
}
/* Workflow designer override for Nintex Workflow styling */
#uiDesignerSurface input[type=text], #uiDesignerSurface input[type=password], #uiDesignerSurface .ms-inputBox, #uiDesignerSurface  select, #uiDesignerSurface  textarea, #uiDesignerSurface .ms-inputBoxActive, #uiDesignerSurface .ms-inputBoxActive.ms-inputBox, #uiDesignerSurface button, #uiDesignerSurface .sp-peoplepicker-topLevel, #uiDesignerSurface .sp-peoplepicker-topLevelDisabled, #uiDesignerSurface .sp-peoplepicker-autoFillContainer
{
background-color: rgb(253, 253, 253) !important;
}

The form is being accessed through an email.

 


Simon Muntz
Nintex Partner
Forum|alt.badge.img+23
  • Nintex Partner
  • November 22, 2019
That CSS is the Nintex default.

If you access the form from the workflow history or directly from the task list do you see the same issue?

Forum|alt.badge.img+6
  • Author
  • November 24, 2019

Hi

No there is no text at the top of the form in the Task list.

Thanks again.

 


Forum|alt.badge.img+6
  • Author
  • November 24, 2019

HI

 

Found a solution. Added the following code:

.ms-belltown-pageName {
display: none;
}