STYLE

<< Click to Display Table of Contents >>

Navigation:  General Functions > Configuring the MIE (Programmer's Guide) > Portal Design > Request Portal Design (Programmer's Guide) > Template Construction >

STYLE

The {%STYLE%} tag is used to insert HTML styles that can be referenced throughout (for setting look and feel).  The syntax is as follows:

 

{%STYLE~~<HTML style code>%}

 

Example:

{%STYLE~~

<style>
<!--
span.TitleBold { font-family: Arial; font-size: 12pt; font-weight: bold }
span.ErrorMessage { font-size: 12pt; color: #FF0000; font-family: Arial; font-weight: bold }
span.LargeBold { font-size: 18pt; font-family: Arial; font-weight: bold }
span.Italics { font-family: serif; font-size: 10pt; font-style: italic }
span.FHeader { font-family: serif; font-size: 10pt; font-weight: bold }
span.Header  { font-family: serif; font-size: 12pt; font-weight: bold; background-color:#CCFFCC }
span.TextStandard { font-family: serif; font-size: 10pt }
-->
</style>

%}