Home > Basic Functions > Table of Contents > Page Styles
Page Styles
The look and feel of your help pages can be customized by editing the page style sheet. You can customize any of the following:
- Page Margins
- Background color
- Background image
- Default Font (size, color, type)
- Etc.
To edit the page style sheet, open the file "pagestyles.css" which is located in the project folder. This can be opened with a stylesheet editor or a text editor such as Windows Notepad.

For example, to change the default page font and background color, change the following:
BODY { FONT-SIZE: 8pt; FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif; background-color:transparent; } | Change to
BODY { FONT-SIZE: 20pt; FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif; background-color:yellow; } | Reload your help system project. The background of every page will be yellow and the font will be much larger.
See also Adding a Page Adding an External Page Adding an Embedded Project Renaming a Page Deleting a Page Page Properties Treeview Styles Dragging & Dropping Pages
|