Hacking my OMG.lol Hello Page

My first foray into creating and hosting my own custom icon markers

I adopted the “Square MB” () character this week, so I was wondering how hard it would be to replace one of the Font Awesome glyphs used as icons on my Hello page with a Unicode character.

Turns out it’s not very difficult at all, but it does require a tiny little bit of JavaScript in addition to a bit of CSS styling.

- <span id="my-custom-id">Some Text</span> [Link Text](https://www.example.com/)
const el = document.getElementById("my-custom-id").parentElement.querySelector("i.fa-link");
el.classList.add("my-class");
i.my-class::before { content: "\2700" !important; }

That’s it! I use this technique to set the fourth bullet on my Hello page to the “Square MB” character (㎆). Cheers!