I have used the following CSS to override the default pagelne buttons style. It works fine in Firefox but in IE and Chrome the background colour doesn't show and I just see the gradient. What am I missing?
This pic shows what the button looks like in IE (top) and firefox (bottom)

input[type="submit"], .submit, input[type="button"], .button, input[type="reset"], .reset {
-moz-box-sizing: content-box;
background: #D22328 !important;
border:none !important;
border-radius: 3px 3px 3px 3px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
color: #FFFFFF !important;
cursor: pointer;
padding: 4px 9px;
text-decoration: none;
text-shadow: none !important;
text-transform: uppercase;
font-size: 13px;
font-weight: bold;
}
input[type="submit"]:hover, .submit:hover, input[type="button"]:hover, .button:hover, a.button:hover, input[type="reset"]:hover, .reset:hover {
background: #b72525;
}
Cheers!











