cant't seem to make ie6 fix work

Permalink
I'm trying to get the pngfix to work but nothjing is happening. I'm using this:

<!--[if lt IE 7.]>
<script type="text/javascript" src="<?php echo DIR_REL?>/themes/KappiBase_H42/pngfix.js"></script>
<![endif]-->

 
jbx replied on at Permalink Reply
jbx
Try this:

<!--[if lt IE 7.]>
<script type="text/javascript" src="<?php echo $this->getThemePath() ?>/pngfix.js"></script>
<![endif]-->
jbx replied on at Permalink Reply
jbx
Oh, you also have an error in your conditional statement... Try this:

<!--[if lt IE 7]>
<script type="text/javascript" src="<?php echo DIR_REL?>/themes/KappiBase_H42/pngfix.js"></script>
<![endif]-->


(no '.' after the 7)
kappi replied on at Permalink Reply
Thank jbx, but no results, I did try the other script unitpngfix.js but it clashes with the jquery image slider plug in I'm using and causes all the slider images to show at once.

Maybe I'll have to go down the old route of redoing some art work jsut for ie6

thanks again
jbx replied on at Permalink Reply
jbx
This is by far the best pngfix you will find (in my opinion...)
http://www.twinhelix.com/css/iepngfix/demo/...

It's the only one I can get to work flawlessly everytime!

Jon
kappi replied on at Permalink Reply
Thanks again, will try now
12345j replied on at Permalink Reply
12345j
Shouldn't it be
  <!--[if IE 6]>
<script type="text/javascript" src="<?php echo DIR_REL?>/themes/KappiBase_H42/pngfix.js"></script>
<![endif]-->
If you just want load for ie6? But maybe I'm missing something.
jbx replied on at Permalink Reply
jbx
Same end result - his comment should work for all ie versions less than ie7.

Jon
kappi replied on at Permalink Reply
I give up!, I'm going to have to go a do it the old fashioned way and use a jquery background.
12345j replied on at Permalink Reply
12345j
Yeah, just thought maybe that script wasn't wiling for some reason.
dg1 replied on at Permalink Reply
I just struggled with this myself and finally had good luck with the DD_belatedPNG fix from this site:

http://www.dillerdesign.com/experiment/DD_belatedPNG/...

It is also mentioned in this article on nettuts:
http://net.tutsplus.com/articles/news/5-easy-ways-to-tackle-ie6s-tr...
kappi replied on at Permalink Reply
Thanks again, will give it a try too.