I'm using the Simple Retail Plugin and added this CSS class to it's css(display.css):
.round
{
border-width: 28px;
-moz-border-image: url("../images/frame2.png") 28 28 round; /*Mozilla version*/
-webkit-border-image: url("../images/frame2.png") 28 28 round; /*Webkit version*/
-o-border-image: url("../images/frame2.png") 28 28 round; /*Opera version*/
-ms-border-image: url("../images/frame2.png") 28 28 round; /*IE syntax when it does support this prop*/
border-image: url("../images/frame2.png") 28 28 round; /*Standard version*/
}
Just a simple border that uses an image. I've tried to add it to the Wordpress's own stylesheet but the same problem persists.
It does work in Safari and Chrome but not in Firefox. I know that border-image CSS works in Firefox because I've tested it outside of Wordpress (v3.4.2).
I've used firebug and it shows that it does in fact use that class but for some reason doesn't show it in firefox. I even tried to change the themes.
I've googled, searched and tested for the last two days but found nothing.
Thanks for your help
Edit: I'm using MAMP.