Share
 
 

Creating your own templates

The procedure below enables you to create a template that uses a cascading style sheet. If you want to define the formatting inside your template, omit all instructions related to the style sheet.

  1. Create a new folder, for example \my_own_setup-sheets.
  2. Copy the images from the original \file\setup-sheets folder into your new my_own_setup-sheets folder. You can replace the images with your own graphics, but keep the original file names.
  3. Place the cascading style sheet (for example, my_stylesheet.css) into the my_own_setup-sheets folder.
  4. Open Notepad.
  5. Create the head section:

    <head>

    <title>Your title for setup sheet page</title>

    </head>

  6. Add the link reference to your style sheet immediately before the </head> tag:

    <link rel="stylesheet" type="text/css" href="../global/my_stylesheet.css" />

  7. Create the body section with the <body> </body> tags, and build your table between them.

    If you are using the default style sheet (style.css), add this line right after the <body> tag to specify the page layout:

    <div class="a4page">

  8. If you'd like to have a logo at the top of the page, insert the following variable before the <table> tag:

    {CompanyLogo}

  9. Save your file as .html.

Was this information helpful?