Hide the QuickLaunch in SharePoint

Sometimes you either need extra space or just want to hide the QuickLaunch on your SharePoint page or site.  While there is some functionality within SharePoint to hide the QuickLaunch completely throughout the site, there may be an instance where you’d just like to hide it from a page.

Want to hide it?

Drop this code in:

<style>
#sideNavBox{ DISPLAY: none; }
</style>

 

To modify the margin on the page so that the content is a little more centered, use this code.

<style>
#contentBox { margin-left: 50px }
</style>

Leave a Reply

Your email address will not be published. Required fields are marked *