« Back to the HTML Forum

How to get rid of these icons

Posted by D0rothyG4le

posted

Forum: HTML Group

I've been having problems changing the contact icons and none of the things that I've been doing to fully remove the default icons is working so idk what to do anymore please help me


Report Topic

1 Reply

Reply by ୨ৎMIMA୨ৎ

posted
updated

<style>

img.icon {
  display: none;
}

</style>

should work? if not add an !important

oh wait if you want to CHANGE the icon its different

ok so this is it

<style>

img.icon {
  display: none;
}

div.f-row:nth-child(1) > div:nth-child(1) > a::before {
  display: inline-block;
  content: '';
}

div.f-row:nth-child(2) > div:nth-child(1) > a::before {
  display: inline-block;
  content: '';
}

div.f-row:nth-child(3) > div:nth-child(1) > a::before {
  display: inline-block;
  content: '🔒';
}

div.f-row:nth-child(4) > div:nth-child(1) > a::before {
  display: inline-block;
  content: '';
}


div.f-row:nth-child(1) > div:nth-child(2) > a::before {
  display: inline-block;
  content: '💖';
}

div.f-row:nth-child(2) > div:nth-child(2) > a::before {
  display: inline-block;
  content: '👏';
}

div.f-row:nth-child(3) > div:nth-child(2) > a::before {
  display: inline-block;
  content: '';
}

div.f-row:nth-child(4) > div:nth-child(2) > a::before {
  display: inline-block;
  content: '';
}
<style>

change the emojis as you want!!


Permalink Report Reply