After the Firefox update the Border Image doesn’t show up anymore at all?
You might have defined somthing like this:
border-width:30px;
-moz-border-image: url('border.png') 64 64 64 64 stretch stretch;
-webkit-border-image: url('border.png') 64 64 64 64 stretch stretch;
-o-border-image: url('border.png') 64 64 64 64 stretch stretch;
I had to look around for a bit to realize it’s a Firefox Problem. First I thought AdBlock might have just blocked it for some reason. It’s actually a change Mozilla did to their CSS Interpretation. You now MUST add this property underneath it for it to work:
Hope I could help.