Blog Post

Core Infrastructure and Security Blog
1 MIN READ

Remove the Quick Launch in SharePoint 2013

ronalg's avatar
ronalg
Icon for Microsoft rankMicrosoft
Feb 08, 2019

First published on MSDN on Mar 14, 2013

There are two ways to remove the Quick Launch in SharePoint 2013. The first is to open the site in Share Designer, and uncheck the option to "Display Quick Launch". While this works, it doesn't move the content to the left. You're left with an empty space that doesn't look great.

 

 

 

 

The second option is to alter the CSS using a Script Editor web part. Place a Script Editor webpart anywhere on the page, and add the following code. The first line removes the Quick Launch. The second line moves the code all the way to the left.


<style>
.ms-core-navigation { DISPLAY: none }
#contentBox { margin-left: 0px }
</style>

Updated Apr 28, 2020
Version 3.0
No CommentsBe the first to comment