Hide Share, Follow and Sync Buttons in Sharepoint 2013

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.    
  3. a[id$=site_share_button], a[id$=SyncPromotedAction], a#site_follow_button  
  4. {  
  5.     display: none !important;  
  6. }  
  7.    
  8. </style>  

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