
Pie not taking effect, not sure why not.
I'm using css3pie and it's not working. I've had the same thing happen before and used CSS and backgrounds to do the rounded corners before. This time I'd like to track down why because I think this is such a beautiful plugin. Here's my CSS
.content-area {
width: 960px;
margin: 0 auto;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
-webkit-box-shadow: 0px 0px 8px #222;
-moz-box-shadow: 0px 0px 8px #222;
box-shadow: 0px 0px 8px #222;
behavior: url('PIE.htc');
border:1px solid #ccc;
position: relative;
}
I've used the
Code:
AddType text/x-component .htc
in my .htaccess file, but no luck getting Pie to work. I also tried using the .php file, again no luck. My site is at a subdirectory of a subdomain, but I've had similar problems getting it to work on other sites that are not at subdomains. Any idea what's going on? Is something wrong with my setup? I'd appreciate any help.
Also, I'm using jQuery, Cufon, and a few light jQuery functions, nothing very involved.