Showing posts with label Remove quick launch. Show all posts
Showing posts with label Remove quick launch. Show all posts

02 June, 2014

Remove quick launch in SharePoint 2013

I think this is the most common request for end users in which they want to remove the quick launch from the site in SharePoint 2013!

Note:
If you find a different solution, please report it as a comment to this post. Be sure to double-verify it: undo your solution and verify that the problem comes back, then redo it and verify that the problem goes away.

So thought of sharing this article with all of you so that everybody can get the benefit of the same:

Here is the script that you are looking for!

/* Hide quick launch bar */

#sideNavBox {

display: none;

}

/* Hide quick launch bar */

#contentBox {

margin-left:20px !important;

}

If you don’t want to go for code approach then here are some other ways!

To enable or disable Quick Launch through the user interface
1.    Click Site Actions, and then click Site Settings.
2.    Under Look and Feel, click Tree view.
3.    To display the control, select the Enable Quick Launch check box. Or, to hide Quick Launch, clear the check box.

To enable or disable Quick Launch using SharePoint Designer
1.    Open the website in SharePoint Designer 2010.
2.    On the site settings page, under Settings
3.    Select the Display Quick Launch check box to enable the menu.
4.    To hide the menu -> clear the check box
5.    Click File, and then click Save to save the change.

If you have any queries/questions then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.