Demigod787@lemmy.world to wefwef@lemmy.worldEnglish · 3 years agoIcon theme packs? I want to replace the icon with a cat, because catslemmy.worldimagemessage-square28linkfedilinkarrow-up150arrow-down11
arrow-up149arrow-down1imageIcon theme packs? I want to replace the icon with a cat, because catslemmy.worldDemigod787@lemmy.world to wefwef@lemmy.worldEnglish · 3 years agomessage-square28linkfedilink
minus-squarefer0n@lemm.eelinkfedilinkEnglisharrow-up1·3 years agoMaybe you have to have a url to the image, but you could just upload it to imgur und copy the link there. You can replace the icon url by searching for “apple-touch-icon” and changing the href property everywhere you see it to the image url. Say you want to use this icon: https://i.imgur.com/kUxXoIA.png You change this: <link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/favicons/apple-touch-icon-180.png"> to this: <link rel="apple-touch-icon" type="image/png" sizes="180x180" href="https://i.imgur.com/kUxXoIA.png"> (and repeat this everywhere you see the “apple-touch-icon”)
Maybe you have to have a url to the image, but you could just upload it to imgur und copy the link there. You can replace the icon url by searching for “apple-touch-icon” and changing the
hrefproperty everywhere you see it to the image url.Say you want to use this icon: https://i.imgur.com/kUxXoIA.png
You change this:
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/favicons/apple-touch-icon-180.png">to this:
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="https://i.imgur.com/kUxXoIA.png">(and repeat this everywhere you see the “apple-touch-icon”)