Steps
  • Open your SharePoint Designer and select a site which you want to hide the buttons.
  • Use F12 tool and get the ID of three Buttons.
  • Open you master page
  • Add a below code in your master page using designer.
  1. <style type="text/css">
  2. a[id$=site_share_button], a[id$=SyncPromotedAction], a#site_follow_button
  3. {
  4. display: none !important;
  5. }
  6. </style>

Thanks for reading my blog. Hope you have enjoyed this.