I am trying to add an icon to the left side of my "Skriv ut" text, but unfortunately it is not displaying correctly.
This is how I want it to look:
https://i.stack.imgur.com/6jcne.pngHere is the code snippet I am using:
<div class="col-md-4 col-md-offset-4">
<a href="javascript:window.print();" class="Print">Skriv ut</a>
</div>
CSS
.Print:link, .Print:visited {
background: url(../img/Icon.png) 0 -320px no-repeat transparent;
float: left;
padding-top: 0;
padding-right: 0;
padding-bottom: 6px;
padding-left: 22px;
}