I have an image:
<a href="https://newlink”.com target="_blank"><img src="https://example.com/assets/images/1.png" /></a>
I want to be able to change the image url href and image src from the css
I could do this for normal text using:
.toBeReplacedDescription span {
display: none;
}
.toBeReplacedDescription:after {
content: “Here is the new replaced text.”;
}
But now I want to be able to do it for an image,
Thanks