Thank you for downloading my Coppermine theme.

I work hard to develop themes that are different and unique.
Because of this, in some instances, there are certain files
and directories which MUST be included in order for the theme
to be cross-browser compatible.  For this reason please do not
remove, rename, or reconfigure directories or files, or otherwise
change this theme without reading this README first.

Thank you and enjoy this theme.

David Wirick

------------------------------------------------------------

THEME NAME: walls
VERSION: 1.1
RELEASE DATE: 20 August 2007

MUST INCLUDE:

  The following MUST be included for compatability with IE 5/6:
  
    iepngfix.htc 
  
    style.css line - * {behavior: url(themes/walls/iepngfix.htc)}

    NOTE:  credit line in template.html for twin-helix 
              (this is the author of iepngfix.htc)

------------------------------------------------------------

ADDITIONAL INFORMATION:

If the background of the gallery is not semi-transparent in your 
IE (versions 5 and 6), verify server support for MIME type

  text/x-component htc

If you unable to verify or your server does not support this MIME
type (and you are unable to add it) then locate the file .file-htaccess 
in the 'fixit' directory, copy it to your coppermine root directory 
and rename it .htaccess

     *optionally, you can replace the iepngfix.htc with iepngfix.php
      (again located in the 'fixit' directory).  Just make sure you
      adapt the reference in the CSS file appropriately.

iepngfix.htc is a script written by Angus Turnbull and available at
his website http://www.twinhelix.com.  Visit Angus' website and see
all of the amazing scripts he has written.

***************************************************************************
***************************************************************************
**                                                                       **
**  If you adapt this theme you will need to edit the iepngfix.htc and   **
**  the iepngfix.php files and change the reference for the blank.gif    **
**  appropriately.                                                       **
**                                                                       ** 
**  You will also need to edit the * {behavior...} line in the CSS file  **
**  as well.                                                             **
**                                                                       **
***************************************************************************
***************************************************************************

ROTATING IMAGES::

To add, change, delete, or modify the images that are rotated each time the 
page is loaded or refreshed:

    /images/rotate

DO NOT REMOVE OR MODIFY THE rotate.php file.  This is what the template.php
is referencing when loading the images (not the images themselves).

------------------------- What was added and why -------------------------

The problem with applying "alphaindex" transparencies in a cross-browser
format is that IE5.X and IE6 DO NOT natively handle these types of images.
Without applying Microsofts proprietary filters, these browsers would display
opaque gray where the semi-transparent area should be.

The problem with this filter is that it must be applied separately to each
<...img...> tag in your HTML.

Fortunately I stumbled across an AMAZING workaround to this:

     iepngFix.htc from Angus Turnbull at http://www.twin-helix.com

Because IE5.X and IE6 need to use this filter to properly display my
*.png images, there were some situations that needed to be resolved in
order to make this a cross-browser compliant theme.

The addition of class types ending with "_w" was necessary to distinguish 
these classes specifically to this theme.  This is also the reason for
adding, what may seem redundant, the addition #div----- definitions.

If these distinguishing characteristics are not applied uniquely to this
theme only (and not across all of Coppermine PHP which is called by the
{GALLERY}) then <form> objects in these "called" functions would not work
in IE5.X or IE6 (not cross-browser compatible).

This is an inherent problem that applies ONLY to IE5.X and IE6.

EOF