Try to set the -moz-appearance CSS property to 'none'
or 'none !important'
CMS
2009-08-03 05:24:02
Try to set the -moz-appearance CSS property to 'none'
or 'none !important'
Like the previous solution but only using javascript :
var pnl = document.getElementById("panelId");
pnl.label = "OK";
pnl.style.color = "white";
pnl.style.backgroundColor = "green";
pnl.style.MozAppearance = "none"
Note that after you do this you'll pretty much have to style it from scratch again and it will probably also lose it's OS specific style.