Quick Launch is rendered using a delegate control by SPContentSiteMap provider.
- One way to remove the Quick Launch bar is to modify the Master Page to remove the delegate control
- Other way is to hide the Quick Launch in a Content Editor Web Part as follows.
- Add Content Editor Web Part to a Web Part Zone
- Select Edit – Modify Shared Web Part
- Under Layout, check the Hidden option
- Click the Source Editor button and add the following CSS
<style>
.ms-navframe {
display:none;
}
</style>
Advertisement