I am currently working on a Wordpress website and I am struggling to add an image before a hyperlink.
For example, I have the following hyperlinks:
https://i.sstatic.net/NeSDa.png
https://i.sstatic.net/s8kjy.png
I have attempted using CSS to achieve this by writing:
background: url("outline.png") no-repeat 6px center;
width: 100px;
height: 100px;
display: block;
However, the image is not displaying correctly. Some parts of the image are going into the background. I also tried using z-index: 99999 to bring it to the front but with no success.