A piece of software we have uses a third party vendor to handle the validation errors. We are updating the UI at the moment and want to replace the image currently displayed with our own custom image.
I am able to target the image using CSS however the current image is still displaying over the new image.
Heres my HTML
<td >
<img src="warning.gif" border="0">
</td>
My CSS
td img {
background-image: url("required.png")!important;
}
How can I hide the existing image and show my image just using CSS