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
l ie = Internet Explorer
l moz = Mozilla
l saf = Safari
Operating systems
The operations system names use the following abbreviations:
l nt = Windows XP
l nt = Windows 2003 Server
l nt = Windows NT
l mac = Mac OS X
Note: Exceptions made for FireFox are stored in a moz exception file. When making an exception for a specific version of Fire-
Fox the version number should refer to the Mozilla engine, this number differs from the FireFox version number.
Header
The information stated in the header div is used to display the main page header or title. This is the place to show a system
wide logo or the logo of your customer.
The default skin showing the PrintShop Mail Web logo as the header image
Replacing content
The HTML snippet below shows the header div containing a <h1> tag. Using the Style.php you can replace its contents by a
logo uploaded in the Edit Web Design page. This allows the system to show a company specific image or logo.
<div id="header"><h1>PrintShop Web</h1></div>
The first style sets the width and height for the header div and sets a background image. The generateSkinLogo function
(PHP) retrieves the path of the company logo which can be set in the Edit Web Design page. Of course this can be replaced by
a hard coded path a custom image. The generateSkinHeaderColor retrieves the header color specified in the Edit Web Design
page. This color can be used to fill up the background to match the color of your background image.
/* header */
#header {
height: 70px;
width: 100%;
background-image: url(<? generateSkinLogo(); ?>);
background-position: center left;
background-repeat: no-repeat;
background-color: <? generateSkinHeaderColor();?>;
}
©2010 Objectif Lune Inc - 227 -