Ever want to hide certain options in the ribbon in DispForm? I do!
Actions has options for “Alert Me” and “Workflows” which I don’t need users to see. You can hide these by adding this to the Custom CSS tab:
#Ribbon\.ListForm\.Display\.Actions
{display:none;}
Another item I don’t need users to see is “Shared With”. There are two sizes so you need to add this to Custom CSS:
#Ribbon\.ListForm\.Display\.Manage-LargeMedium-1-1,
#Ribbon\.ListForm\.Display\.Manage\.ManagePermissions-Medium
{display:none;}
Happy hiding!