« Web, HTML, Tech Forum

images in contact icons

ok so i wanna replace the contact icons but i can only find how to do it w emojis. i wanna replace it w icons like this (from https://autism.crd.co/#small)



539ff5e6

is there a way to do this or am i tryna do the impossible lolol


Report Topic

2 Replies

Sort Replies:

Reply by Bela

posted

https://blog.spacehey.com/entry?id=7464


Report Reply

Reply by Div

posted

Like ^ @Bela said you can change them using that link, but instead of using: content: "💞"

use: content: url("https://autism.crd.co/assets/images/gallery08/d8295ff5_original.gif");

here's an example:
.contact .inner .f-row:nth-child(1) .f-col:nth-child(1) a:before {
    /* Add to Friends */
    content: url("https://autism.crd.co/assets/images/gallery08/d8295ff5_original.gif");
}

repeat for all :)


Report Reply