SharePoint Hide Top and Left Navigation Menues with Simple CSS
👤 By cssgui | 📆
Use this simple CSS code to hide some of the SharePoint uncessary sections of the page such as:
- The Top Header
- The Top Navigation
- The Left Navigation Frame
- The Left Navigation Links
Sometime its necessary to hide the navigation links because for security purpose or to kee the user expirience to a maximium. With simple CSS code, you can accomplish this, The following is the CSS code you can use to hide all the mambo yambo.
#suiteBarTop, #s4-ribbonrow, #s4-titlerow, #sideNavBox{
display: none !important;
}