|
Adding External Style Sheets
You can easily import external style sheets to be used for rendering of the content using the parameter below:
<PARAM NAME ="externalStyleSheetLocation" VALUE="http://yourhost/YourStyleSheetFile.css"> - Indicates the URL of the style sheet file (css) to be loaded. If this parameter is indicated, then the style sheet will be loaded and added to the document. All the class names will be parsed and will be available for browsing through the style combo boxes on all property dialogs. See the following CSS file format guidelines:
In order to achieve best rendering results please use only separate selectors such as the following:
body {color: #000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: none }
td {color: #000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: none }
p {color: #000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; text-decoration: none }
.text {color: #000; font-size: 10px;}
The majority of the standard style sheets will be rendered correctly. Once imported, the style classes will be parsed and will appear on the style combo boxes. The Enterprise Edition has extended style sheet support which includes style combo boxes on all property windows - for applying styles to tables, table cells, form elements, images etc. The Light and Professional versions include basic style sheet support for applying styles only to text.
|