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
dai tran 6dai tran 6 

How can remove top banner of Force.com_Sites?

User-added image
If i add a visualforce page to Force.com_Sites, it display a top banner of salesforce.
can i remove it? or have to buy?
Best Answer chosen by dai tran 6
Ajay K DubediAjay K Dubedi
Hi Dai,

Did you set showHeader to false? if not go to your <apex:page> tag and add the showHeader attribute

<apex:page showHeader="false">

Thank You,
Ajay Dubedi

All Answers

Narender Singh(Nads)Narender Singh(Nads)
Hi Dai,
Are you setting the showHeader attribute as false in your VF page code?
Like this:
<apex:page showHeader="false">
Ajay K DubediAjay K Dubedi
Hi Dai,

Did you set showHeader to false? if not go to your <apex:page> tag and add the showHeader attribute

<apex:page showHeader="false">

Thank You,
Ajay Dubedi
This was selected as the best answer