3.28.2010

Hiding Salesforce Default UI Theme from Visualforce Page

Simply set the following attributes in the apex:page element to false:
  • showHeader
  • standardStyleSheets
For example:
<apex:page showheader="false" standardstylesheets="false">
....
</apex:page>

No comments: