I have a website that has an image with a src attribute and I would like to change the src location of that image with an image of my own. The image lives in a div component
Here is another dirty hack :)
.application-title > img { display: none; } .application-title::before { content: url(path/example.jpg); }