Hide Sharepoint Suite and Ribbon Bar

Fab Loría 1 Reputation point
2021-01-13T05:32:43.037+00:00

Hi!

I am using Sharepoint 2019 and I would like to hide the suite and ribbon bar that appears above the document library.
The one with the apps thumbnail icon (see attached image)
I read this can be done with css in the classic experience, but I can't find how to activate it.
Could someone guide me in how to achieve this

Thanks!

56033-sharepoint.png

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,606 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. ChelseaWu-MSFT 6,316 Reputation points
    2021-01-13T08:25:40.637+00:00

    You cannot hide the Suite Bar or the List menu in modern experience by customizing classic experience in SharePoint Server 2019. The two experience uses different master pages and modern master page does not allow customization.

    To hide the Suite Bar in classic experience only (it will still show in modern UI), you can get the class/id name of the Suite Bar using Internet Explorer Developer Tools (F12), then put CSS code in the master page:

     <style>  
         #suiteBarTop {display:none !important;}  
     </style>   
    

    56183-screenshot-2021-01-13-151958.png

    Reference: Reference: How to Hide Top Bar, Ribbon, and Quick Launch in SharePoint 2013.

    In addition, the screenshot you provide seems to be the modern UI in SharePoint Online. Some of the buttons and features are not available in SharePoint Server 2019 (SharePoint search box in office 365 suite bar, Edit in grid view, for example). Please double check before the customization.


    If an Answer is helpful, please click "Accept Answer" and upvote it.
    **Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. **


  2. Trevor Seward 11,681 Reputation points
    2021-01-18T20:45:21.123+00:00
    0 comments No comments

  3. Linyu 11 Reputation points MVP
    2021-02-20T07:37:09.373+00:00
    0 comments No comments