Skip to main content
Nintex Community Menu Bar

Hi there,

 

Our business is working on migrating forms from the classic 365 forms to the new responsive forms on Nintex Cloud and would like to know if we can either hide this entire ribbon or selected options from this ribbon that appears at the top of responsive forms:

 

 

Our set up does not allow staff to edit forms after submission, and our data retention does not permit deletion either, so these two buttons need to go. 

 

Interestingly, there’s an option to hide the print button in the form settings, but I guess edit and delete didn’t make the cut to receive their own buttons:

 

 

Any advice is much appreciated!

Hi ​@DamienT,

You could remove Edit and Delete using CSS.
In the forms designer, click on the styles tab. In the Advanced Styles section, Enable customized CSS. 
Open the CSS editor by clicking the edit CSS button.
Paste the below CSS in, and you should be good to go.
Please test as I have only done a quick test.

 

a.nx-command-bar-item-title="Edit"],
li title="Delete"] {
display: none !important;
}

 


Hi ​@DamienT,

You could remove Edit and Delete using CSS.
In the forms designer, click on the styles tab. In the Advanced Styles section, Enable customized CSS. 
Open the CSS editor by clicking the edit CSS button.
Paste the below CSS in, and you should be good to go.
Please test as I have only done a quick test.

 

a.nx-command-bar-item-title="Edit"],
li title="Delete"] {
display: none !important;
}

 



Oh wow you’re a legend, looks like that’s the answer!

 


what a great help, thank you!​​​​​​​


Hi ​@DamienT,

Glad I could help. As I said, please test to make sure it doesn’t break anywhere.
It should be good. This is not an official Nintex fix; it’s just something I whipped up.


Reply