Is it possible to have Font Awesome Icons in Section Titles? If so, how?
I think you would have to use JavaScript. Here's an example:
<script>
const forumSelect = document.querySelector('div.forum__name a[href$="90001"]');
const htmlString = `HTML`;
forumSelect.insertAdjacentHTML('afterbegin', htmlString);
</script>