Looking to replace a Font Awesome icon with a background image using only CSS.
Current Setup: https://i.sstatic.net/tkPXz.jpg
.btn.btn-default.bootstrap-touchspin-up:before {
font-family: Fontawesome;
content: "\f067";
font-size: 14px;
}
Desired Outcome:https://i.sstatic.net/wP5wb.jpg
.btn.btn-default.bootstrap-touchspin-up:before {
background-image : url(Images/arrows-left-right.png);
font-family: initial;
content: "";
font-size: 14px;
height: 20px;
width: 20px;
}