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
OpsterOpster 

VF Page without SFDC Page layout: I want a blank page?

I have created a VF page that I do not want to see all the SFDC menus and tabs on.  All I want to see is the HTML I have entered within my Apex Page Blocks, nothing else.   How can I do this?
Best Answer chosen by Admin (Salesforce Developers) 
BulentBulent

<apex:page showHeader="false">

.....your html content goes here.....

</apex:page>

 

Message Edited by Bulent on 08-25-2009 02:48 PM

All Answers

BulentBulent

<apex:page showHeader="false">

.....your html content goes here.....

</apex:page>

 

Message Edited by Bulent on 08-25-2009 02:48 PM
This was selected as the best answer
OpsterOpster
That does a great job of getting rid of all the menus etc.   thanks