7.1

Table Of Contents
border-width: 0 1px 0 0;
border-color: #FFFFFF;
}
generateSkinContrastColorHighLight
The generateSkinContrastColorHighLight function retrieves the skins contrast color set in the Edit Web Design page. A
parameter can be supplied to change the tint of the color. Fractional values are used, where 0.0 will be black, 1.0 the original
color and higher values will result in a lighter tint of this color.
Below an example on how this color can be set using this function. In this case the background color of the selected menu item
will have a lighter color:
#menu .selected a {
background-color: <? generateSkinContrastColorHighLight(1.1); ?>;
}
generateSkinFont
The generateSkinFont function retrieves the font information set in the Edit Web Design page of the PrintShop Mail Web site.
The value entered in the Edit Web Design page (Font family) can be a single font name or a comma separated list. Below an
example on how the Font family can be set using this function:
input, select, body, textarea {
font-size: 70%;
line-height: 1.3em;
font-family: <? generateSkinFont(); ?>;
}
generateSkinHeaderColor
The generateSkinHeaderColor function retrieves the header color information set in the Edit Web Design page of the Print-
Shop Mail Web site. The value entered in the Edit Web Design page can be entered manually or selected in the color picker.
Typically this color will match the background color of the company logo. This color can be used to set the background so the
logo or background image nicely blends in wich the overall design.
Below an example on how this color can be set using this function:
#header {
height: 90px;
background-image: url(<? generateSkinLogo(); ?>);
background-position: center left;
background-repeat: no-repeat;
background-color: <? generateSkinHeaderColor();?>;
width: 100%;
}
generateSkinHeaderColorHighLight
The generateSkinHeaderColorHighLight function retrieves the skins header color set in the Edit Web Design page. A param-
eter llows the tint of the color to be changed. Fractional values are used, where 0.0 will be black, 1.0 the original color and
higher values will result in a lighter tint of this color.
Below an example on how this color can be set using this function:
©2010 Objectif Lune Inc - 243 -