Creating or Modifying a Topic

banner art

The easiest way to create a topic is to copy the file for an existing topic to a new file and then use an HTML editor to edit the title and text of the topic. It is recommended that you put the files for the new pages in a separate folder in the Content folder because it makes it easier for you to manage the changed files when you need to upgrade or reinstall Microsoft CRM.

The style for a topic page is controlled by the Help.css, msnuxa.css, and psie17.css style sheets and the Help.js and msnpanehelp_script.js JScript files; therefore, links to these files need to be in each topic file. The locations you specify in the links depend on where you store your new Help pages.

Example

The following example shows the <head> section for a new help file created in AW, a subfolder of the Content folder.

<head>
    <META http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>New Page</title>
    <link rel="stylesheet" type="text/css" href="../phie17.css">
    <link rel="stylesheet" type="text/css" href="../msnuxa.css">
    <script language="javascript" src="../msnpanehelp_script.js">
    </script>
    <meta name="keywords" content="comma-separated keywords">
    <link rel="stylesheet" type="text/css" href="../../../common/help.css">
    <script language="JavaScript" src="../../../common/help.js">
    </script>
  </head>

© 2007 Microsoft Corporation. All rights reserved.