Skip to content

Instantly share code, notes, and snippets.

@ar94952
Created October 9, 2020 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ar94952/1e2e0e41fa63fc3e0f4d483b1de2b67f to your computer and use it in GitHub Desktop.
Save ar94952/1e2e0e41fa63fc3e0f4d483b1de2b67f to your computer and use it in GitHub Desktop.
Remove SharePoint Left Nav
<!-- CSS code to remove Left Navigation Menu on SharePoint -->
<style unselectable=”on”>
/* On site page hide left navigation menu */
#sideNavBox {
display: none;
}
/* adjust position of content on site page
NOTE: each viewport may vary in sizes, so adjust
"margin-left:" to center your SharePoint WebPart Contents
*/
#contentBox {
margin-left: 20px!important;
}
</style>
@ar94952
Copy link
Author

ar94952 commented Oct 9, 2020

SharePoint Left Navigation can get pretty cluttered, so I found this code somewhere and I saved it. I can't remember who I got it from.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment