Search This Blog

Monday, January 19, 2015

Hide left side navigation in SharePoint


Here are steps to hide left side navigation from SitePages...

1- Edit Page in SharePoint Designer
2- Goto Insert > Click WebPart > Media and Content > Content Editor Webpart in Page
3- Add below script in your page

<style type="text/css">

body #s4-leftpanel 
{
display:none;
}
.s4-ca 
{
margin-left:0px;
}
</style>


4- Save and see the changes

No comments:

Post a Comment