Hi, is there a way to hide or remove the icon that appears alongside images when they have an external link embedded onto them?
I have not been able to find out how, the image itself does not show that option.
Thanks,
Hi, is there a way to hide or remove the icon that appears alongside images when they have an external link embedded onto them?
I have not been able to find out how, the image itself does not show that option.
Thanks,
Hello @franciscol,
I am not aware of a general solution for this.
But if you are able to define your own CSS, the following might help:
/* Do not define a background for external link when they contain an image */
.wikiexternallink:has(img) {
background: none;
padding-right: inherit;
}
I see, thanks for the solution!