How can I replace text with CSS using a method like this:
.pvw-title img[src*=\"IKON.img\"] { visibility:hidden; }
Instead of ( img
img
Unlike what I see in every single other answer, you don't need to use pseudo elements in order to replace the content of a tag with an image
Facts div.pvw-title { /* No :after or :before required */ content: url("your URL here"); }