Hide "New Item" Label From A Custom List In SharePoint Office 365

In this blog, we will see how to hide a "New Item" label from a custom list in SharePoint Office 365. We often get a requirement stating, "The new button should be hidden from the list". So, how we do it?
  1. Open the list.

  2. Edit the page. 

  3. Add Script Editor web part.

  4. Paste the code below and click on OK.

    Code
    1. <style type="text/css">  
    2. #Hero-WPQ2  
    3. {  
    4. display:none;  
    5. }  
    6. </style>  
  5. Save the page.

  6. The New Item/edit section will disappear from the list.

     
Keep Reading and Keep Learning !!