CSS3 htc file

I’ve been using this prior to converting to yii:

css3pie.com/

It allows you to use css3 attributes in IE. It was working before I started using yii. I’m developing on the same server and the log files in Apache indicate that the file is being requested. So I’m hoping someone else can tell me that they have had success with it while using yii.

I’ve tried all the recommended solutions listed on the site, but it hasn’t worked.

So anyone able to get it to work?

Thanks in advance!

How are you loading it?

You say it was requested from Apache but was it found?

If you are using behaviour: …htc make sure is loaded at the latest CSS and same for its JS file.

Forgot one important line in the instructions:

"Note: this path is relative to the HTML file being viewed, not the CSS file it is called from."

So at the end of my declaration I have this:

behavior: url(/fin/themes/main/css/PIE.htc);

Originally had:

behavior: url(PIE.htc); <-- Not Correct!

Thank you both for your help!