Have you uploaded the pie.htc file? This is an essential file which contains all the javascript required. If the .htc file is missing the CSS just won't work at all.
Announcement
Collapse
No announcement yet.
Actinic and CSS3 and PIE
Collapse
X
-
Steve Griggs.
"People in business often miss opportunities, mainly because they usually arrive dressed in overalls and looking like work."
www.kitchenwareonline.com
www.microwave-repair.co.uk
-
Originally posted by bwebsites View Post
It can behave oddly in IE9 but you can tell IE9 to behave like IE8 by adding
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >
to the header.The Pretty Dress Company
Comment
-
Thanks Mick.
That's worth knowing about. It could convince me to start using PIE on some "live" sites.Steve Griggs.
"People in business often miss opportunities, mainly because they usually arrive dressed in overalls and looking like work."
www.kitchenwareonline.com
www.microwave-repair.co.uk
Comment
-
I know some time has passed but have you all got PIE.htc working now???
I can get it working on a test page http://www.graphicz.eu.com/gali/acatalog/piex.html
It also works fine on a text page referencing the actinic and style css sheets:
http://www.graphicz.eu.com/gali/acatalog/piea.html
But it won't work within actinc in IE http://www.graphicz.eu.com/gali/acatalog/
But is fine in the other browsers.
PIE.htc is present in the acatalog folder:
http://www.graphicz.eu.com/gali/acatalog/PIE.htc
css is:
Code:#cthree {width:190px; -khtml-border-radius:10px; border: 2px solid #F55D37; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; behavior: url('PIE.htc'); padding:10px; }
Thank you.Jonathan Chappell
Website Designer
SellerDeck Website Designer
Actinic to SellerDeck upgrades
Graphicz Limited - www.graphicz.co.uk
Comment
-
Problem was solved by using:
Code:behavior: url(PIE.php);
(http://css3pie.com/)
Full css:
Code:#cthree {width:190px; -khtml-border-radius:10px; border: 2px solid #F55D37; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; padding:10px; behavior: url(PIE.php); position:relative; z-index:0; }
Code:#cthree {width:190px; background: #fff; -khtml-border-radius:10px; border: 2px solid #F55D37; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: #666 0px 4px 4px 0px; -moz-box-shadow: #666 0px 4px 4px 0px; box-shadow: #666 0px 4px 4px 0px; padding:10px; behavior: url(PIE.php); position:relative; z-index:0; }
ThanksJonathan Chappell
Website Designer
SellerDeck Website Designer
Actinic to SellerDeck upgrades
Graphicz Limited - www.graphicz.co.uk
Comment
Comment