function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
udayarangareddy mekalaudayarangareddy mekala 

VF PAGE12111

HI
  How to remove the left navigation in the user profile.


Thanks&Regards
RangaReddy
Mudasir WaniMudasir Wani
If you are talking not to show the side bar in salesforce then you can use the below code 

If you don't want to show the sidebar in page use the below tag in <apex:page > header line
sidebar = "false"
If you don't want to show the header then use the following code  use the below tag in <apex:page > header line
showheader = "false"
here is the code you need to use
<apex:page showheader = "true" sidebar = "false"/>

</apex:page>
Hope this helps
 
udayarangareddy mekalaudayarangareddy mekala
Thanks
can u remove the left navigation by using profile permissions(Configuration Part)

Tahnks
Ranga