Use the image as a background image.
.circletag { display: block; width: 40px; height: 40px; background: #E6E7ED; -moz-border-radius: 20px; -webkit-border-radius: 20px; background-image: url(no.png); background-position:50% 50%; background-repeat:no-repeat; }
If you do not want the entire external div to be accessible to the client, this might work:
.circletag { display: block; width: 40px; height: 40px; background: #E6E7ED; -moz-border-radius: 20px; -webkit-border-radius: 20px; text-align:center; } .circletag img{ margin-top:7px; }
source share