7.1
Table Of Contents
- Table of Content
- Overview
- Understanding PrintShop Mail Web
- Getting Started
- The PrintShop Mail Web Interface
- Publishing Workflow
- Ordering Workflow
- New Document
- Order Manager
- Checkout
- Companies
- Users
- Publication Types
- Collections
- Settings
- About
- License
- Roles
- Languages
- Web Design
- Maintenance
- Settings
- Currencies
- Tax Rates
- Shipping Rates
- Calendar
- Production Settings
- User Input Field Defaults
- Output Folders
- Job options
- Printers
- E-mail Settings
- E-mail Addressees
- Managing E-mail Templates
- Modules Settings
- Enabling a MIS connector
- Installed modules
- Properties
- Enabling a Print Production connector
- Installed modules
- Properties
- Requirements
- Configuring the module
- The PayPal Sandbox
- Processing orders
- Requirements
- Configuring the Authorize.net module
- Test mode
- AVS and CCV checks
- Payment page
- Requirements
- Requesting a test account
- Configuring the iDEAL test dashboard
- Configuring the iDeal module
- Requirements
- Configuring the Moneris module
- Test mode
- Requesting a live account
- AVS and CVD checks
- Payment page
- Add a new Module
- Configure a module
- Delete a Module
- XML (eXtensible Markup Language)
- Options
- Sample POST receive script
- Interaction With PrintShop Mail Design
- Introduction to Regular Expressions
- Introduction
- Skinning Guide
- Getting started
- Creating your own skin
- The template file
- HMTL Outline
- Styling
- Key Concepts
- Style organization
- Header
- User information
- Menu bar
- Background
- Overview tables
- Edit forms
- Sub menus
- Special variables
- Variables for template files
- Variables for style files
- Creating page exceptions
- Creating a page specific template file
- Modifying a page specific template file
- DOM manipulation using jQuery
- Launching code on Document Ready
- Populating fields with computed values
- Removing elements from the DOM
- Adding information to the DOM
- Customizing the store front
- Storefront class
- Creating a hierarchical tree
- Adding a live search option
- Copyright Information
- Index
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 -