Hide Quick Launch (Left Navigation) in SharePoint 2007 / 2010 using CSS

Place the below CSS in Content Editor Web Part (or in your CSS / Master Page/etc.)

In MOSS 2007:

<style>
.ms-quicklaunch 
  {
    display:none
  }

.ms-navframe 
  {
    display: none
  }
</style>

In SharePoint 2010:

<style type="text/css">
.v4master #s4-leftpanel 
 { 
  display: none 
  }
 .v4master .s4-ca 
  { 
    margin-left: 0px 
   }
</style>

For SharePoint 2013, Use this: Hide Quick Launch Bar in SharePoint 2013

Salaudeen Rajack

Salaudeen Rajack - SharePoint Expert with Two decades of SharePoint Experience. Love to Share my knowledge and experience with the SharePoint community, through real-time articles!

One thought on “Hide Quick Launch (Left Navigation) in SharePoint 2007 / 2010 using CSS

  • Thank you very much you saved my day !!

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *