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: