Hello,
How do I replace a css background-image with a background effect with a:hover
I have a css class assigning a background-image, but Im trying to overlay the image with another background-image. But it's not overlaying the other background image. What am I missing?
.header a {
background-image:url("/ship/right.gif");
background-position:right;
background-repeat:no-repeat;
}
.header a:hover, .header a:active{
background-image:url("/ship/left.gif") !important;
background-position:right !important;
background-repeat:no-repeat !important;
z-index: 9999;
}
Thank you