Catalog

We guarantee satisfaction

How does this work?

The document consists of three main blocks: header, middle and footer. header and footer have fixed positions; header at the top and foote at the bottom of the view. middle has padding-top and padding-bottom to match the heights of headerwrap and footerwrap.

To center the content horizontally, the contents of each of the main blocks has its left and right margins set to auto.

To get around IE fixed:posisition there are conditional comments to load an extra stylesheet if the browser is IE6:

html {
    overflow:hidden;
}
body {
    height:100%;
    overflow:auto;
}