Can anyone help me figure out what's wrong here? The gradient is working fine, but the image isn't showing up.
You can view the page on my Wordpress site at:
body {
background-color: #FFF !important; /* setting a fallback color if gradients are not supported */
background: #fff url(/wp-content/uploads/2013/01/body-bg2.png) repeat-x !important;
background-image: -webkit-linear-gradient(top, #fff, #A9A9A9) !important; /* For Chrome and Safari */
background-image: -moz-linear-gradient(top, #fff, #A9A9A9) !important; /* For old Fx (3.6 to 15) */
background-image: -ms-linear-gradient(top, #fff, #A9A9A9) !important; /* For pre-releases of IE 10 */
background-image: -o-linear-gradient(top, #fff, #A9A9A9) !important; /* For old Opera (11.1 to 12.0) */
background-image: linear-gradient(to bottom, #fff, #A9A9A9) !important; /* Standard syntax; must be last */
}
UPDATE: It seems that the gradient effect is not displaying in Internet Explorer, only the image...
Thank you for any assistance, Ken