Hi,
Wondering is anyone can help, I've had some trouble with my custom code in template Montauk - I want to replace my cart icon to a png that is already uploaded in my custom files - I also want to update the color too. I have searched for an answer already here and used the below, but it's doesn't work:
span.Cart-label {
visibility: hidden;
}
span.Cart-label:after {
visibility: visible;
content: "";
background: url(IMAGE URL) center center no-repeat;
background-size: cover;
display: inline-block;
width: 30px;
height: 30px;
}
This is what it currently looks like (note it's not in the header it only pops up if you have something in the cart:
Any help would be greatly appreciated!