One possible way to hide the Quick Launch panel on a page is to modify the page layout for example of the default.aspx page.
Another method for hiding the Quick Launch is to add a Content Editor Web Part to the page and add the following code to the webpart.
<style type="text/css">
#LeftNavigationAreaCell { display: none !important; }
</style>
<style type="text/css">
/*--Hide Quick Launch Panel--*/
#s4-leftpanel{
display:none
}
.s4-ca{
margin-left:0px
}
</style>
The last method is to add the code to the Masterpage for the site (just before the closing head tag) and this will eliminate any extra space in the top left area.
No comments:
Post a Comment