Hide SharePoint Online Save and Close Buttons

I have created custom buttons to trigger Flows for specific behavior. To avoid confusion for the users, I would like to hide the built-in buttons at the top of the form. How is this accomplished?

RemoveBuiltInSaveCloseButtons

Hello @shedev,

Please use the below CSS in CSS editor to hide the default 'Save' and 'Close' buttons.

.fd-toolbar-primary-commands {
    visibility: hidden;
}
2 Likes

Thank you, once again, for your help. Greatly appreciated!

1 Like