I've got some anchor tags that have been assigned the class class='user-home'
. To achieve a background image effect, I'm using the following CSS code:
.user-options .user-home{
background-image:url('../../img/user-home.png');
background-position:center;
background-size: 14px 14px;
background-repeat:no-repeat;
border: none;
}
However, I'm experiencing this issue on Chrome/Mozilla/IE11:
On IE7, the display appears differently:
Any suggestions for a solution would be greatly appreciated. Thank you.