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
kshannonkshannon 

How to remove force.com logo and "Logout" header from VF Page

Hey,

 

I have a visualforce page that is using a template. Inside the template it is defined that standardstyle="false" as well as on the vf page itself. I'm using my own stylesheet, yet the force.com logo and logout link are still being used as a header... how can I remove this? Also the footer has a powered by salesforce.. is this a default setting?

Best Answer chosen by Admin (Salesforce Developers) 
kshannonkshannon

I realize now its just showing on the edit page, not on the sites page.. so no worries thanks.

All Answers

imuino2imuino2

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

 

<apex:page showHeader="false">

 

Ignacio

kshannonkshannon

Yes,

 

It is not the actual SF header that is showing... it is just an image like a simplified version of sf header. as well as the footer. Not sure where it comes from.

imuino2imuino2

Can you post some of your code?

kshannonkshannon

I realize now its just showing on the edit page, not on the sites page.. so no worries thanks.

This was selected as the best answer
imuino2imuino2

No problem you are welcome.

Please mark it as resolved then.

Thanks.

Ignacio.