Tuesday, August 17, 2010

How to hide the Quicklaunch in SharePoint

If there are some pages you want to hide the quicklaunch to gain that little extra real estate, then there is a really simple fix.

Remember that when adding a Content Editor Web Part, you are able to add both CSS and javascript to the page.

So the simples way is simply to hide the Quicklaunch using CSS. Actually it hides the entire area the Quicklaunch is placed in, and gives you access to the whole areas width.

Simply add a Content Editor Web Part to the page and edit it with “Source Editor”.

Page the following:

<
style>

.ms-navframe
{
display: none;
}



You can also just hide the actual Quicklaunch if you want to place something else there:

<
style>
.ms-quickLaunch
{

display: none;
}




No comments:

Post a Comment