Create a new Visualforce page and call it styled, using the following content:
<apex:page standardController="Account"> <h1>My Styled Page</h1> <p>Great!</p> </apex:page>
Now add a few attributes to the <apex:page> component. Click Save after adding each one to see the effect:
- Add sidebar="false"
- Add showHeader="false"The header and sidebar have now been removed, showing a much more basic page. You need to go one step further to remove all default Force.com styling.
- Add standardStylesheets="false"
No comments:
Post a Comment