Hide Save Option on the Ribbon w/ CSS

  • 25 May 2017
  • 1 reply
  • 150 views

Badge +6

If you have occasion to hide the Save button along the top of a Nintex Form in Office 365, below you will find some simple CSS that you can copy and paste into your Form Settings -> Custom CSS section to do so.

 

Before:

 

 

 

The below CSS will remove the button labels and the Save icon:

#RibbonSaveButton
{
display: none;
}‍‍‍‍‍‍‍‍

 

After:


1 reply

Badge +1

Thanks @brad_orluk Your post helped me to accomplish the same using Nintex Responsive Forms.
Inc ase someone is wondering how, you can check it here: Custom CSS to Hide Edit Button in the Ribbon of a Nintex Responsive Form 

Reply