hi

you somebody please change this link.

if you put this theme in the sites/all folder, it doesnt work:

iepngfix.htc

// This must be a path to a blank image. That's all the configuration you need. Path is relative to drupal-collections server.
if (typeof blankImg == 'undefined') var blankImg = '/sites/all/themes/austin/images/blank.gif';

thanks

Comments

caroltron’s picture

Assigned: Unassigned » johnalbin

John, is this one something that you could assist me with? Maybe I can use a different approach to transparent images, and stop using this ie png hack. Maybe make a alpha transparent image?

danchadwick’s picture

There is also the CSS reference to iepngfix.htc in ie.css, line 63:

* img,
* div {
  /*behavior: url(/sites/default/themes/austin/js/iepngfix.htc);*/
  behavior: url(../js/iepngfix.htc); /* DC */
  width: auto;
}

Could this also be in inside iepngfix.htc, line 15:

// This must be a path to a blank image, relative to the HTML document(s).
// In production use I suggest '/images/blank.gif' or similar. That's all!
//if (typeof blankImg == 'undefined') var blankImg = '/sites/all/themes/austin/images/blank.gif';
if (typeof blankImg == 'undefined') var blankImg = '../images/blank.gif';
danchadwick’s picture

Checking into this further, the behavior url is apparently relative to the html file, so I don't see a way to use relative urls here. iepngfix page Oddly, the relative path worked on my MS-based development server (but not when I deployed to production).

I'm not sure how to make this flexible enough for the theme to be deployed in other folders and/or multisite.