
Force.com Cookbook Sample Code
Chapter 7: Customizing Buttons and Links - Creating Custom Help for a Custom Object
To download all the code samples, access the Cookbook. -
This s-control can be used as a template for writing your own custom object help pages. It uses the same style sheet as standard Salesforce help.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <!-- The link to the standard Salesforce stylesheet --> <link href="/sCSS/Theme2/default/help.css" type="text/css" rel="stylesheet" > </head> <body> <h3> My Custom Help Title</h3> <p>Here is the first help topic. This can show a custom procedure or description for your application or company.</p> </body> </html>
Sample code provided by salesforce.com. All rights reserved.