I found a simple way, just open your page layout in SharePoint designer and add following code.
<asp:Content ID="PageHead" ContentPlaceholderID="PlaceHolderAdditionalPageHead" runat="server">
<style type="text/css">
#s4-leftpanel
{
display:none;
}
.s4-ca
{
margin-left: 0px;
background: transparent;
}
</style>
</asp:Content>
It will hide Left hand Navigation from your Page layout.
Thank you, it saved my time :)
ReplyDelete