You're an absolute wizard!!!
It's almost fully working!
I managed to strip it down (with the base look and without doubling up the logo on hover) by using:
/* TikTok Logo */
[href *='tiktok'] {
content: '';
display: inline-block;
width: 100%;
height: 100%;
background-image: url('https://api.iconify.design/ic/outline-tiktok.svg?color=black');
background-repeat: no-repeat;
background-position: center center;
background-color: white;
}
[href *='tiktok'] svg, [href *='tiktok'] svg {
visibility: hidden;
}
As it stands though, if I hover the cursor over any other icon, it still keeps the TT icon highlighted.
(Essentially in the cover page the social links that are not selected drop in opacity, vs the rest of the website where the hovered one is highlighted!)
I'd imagine there is a different approach than using this perhaps?
[href *='tiktok']:hover:after {
xxxxxx <--- the other icons should dim
}
It would be great to solve this, but incredibly happy with this for the time being!!!
Thank you a milli @tuanphan!!!