Hello! I am new to the discussion boards! Nice to meet you all!
I was wondering if it's possible to set a custom favicon for my campaign, and if so how. I can't seem to figure it out.
Thanks!
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
I think that this will do the job for you:
.become-a-fan-button .icon-card-hearts {display:none}
.become-a-fan-button .text::before {
content: "";
position: relative;
background: url("https://www.svgrepo.com/show/489175/thumb-up.svg")
no-repeat 0% 0;
background-size: 20px 20px;
padding-left: 40px;
}
The first selector hides the existing icon.
The second adds a new image (use the URL for whatever image you want)