Possible Duplicate:
Is it possible to combine a background image and CSS3 gradients?
I'm using CSS for a background gradient:
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #95d7d3), color-stop(1, #7db1ad) );
background:-moz-linear-gradient( center top, #95d7d3 5%, #7db1ad 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#95d7d3', endColorstr='#7db1ad');
But I would also like to add a background image, is there a way of doing this with these gradients?
If I use this:
background: -moz-linear-gradient( center top, #95D7D3 5%, #7DB1AD 100% ) url(../img/icons.png) 0 -293px no-repeat!important;
The gradient over-rides the background image.
any ideas?