By default, SharePoint 2010 Webpart pages don't have quick launch navigation! Web part page missing quick launch in SharePoint 2010.
Show quick launch SharePoint 2010 web part page:
We can bring it by editing web part page. Just Edit the webpart page in the SharePoint Designer 2010 Advanced Mode and remove the following code (As same in SharePoint 2007):
![add quick launch to sharepoint web part page add quick launch to sharepoint web part page]()
![]()
In SharePoint 2010 you have to also remove the following CSS code:
![sharepoint display quick launch web part page sharepoint display quick launch web part page]()
Save the page! This will bring Quick launch bar again!! Here is the result: quick launch on SharePoint 2010 web part page.
Here is my SharePoint 2007 version of this post: SharePoint 2007 Quick Launch (left navigation) Missing in Web part pages - Solutions
![]() |
show quick launch in SharePoint web part page |
We can bring it by editing web part page. Just Edit the webpart page in the SharePoint Designer 2010 Advanced Mode and remove the following code (As same in SharePoint 2007):

<asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content><asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>

In SharePoint 2010 you have to also remove the following CSS code:
<style type="text/css"> body #s4-leftpanel { display:none; } .s4-ca { margin-left:0px; } </style>

Save the page! This will bring Quick launch bar again!! Here is the result: quick launch on SharePoint 2010 web part page.
Here is my SharePoint 2007 version of this post: SharePoint 2007 Quick Launch (left navigation) Missing in Web part pages - Solutions