Great. You can delete the account.
I fixed this in the dev-version. You can do the following to fix it now because I dont know yet when I will release the next version.
In asgaros-forum/skin/style.css
Find the following code:
#af-wrapper [class^="icon-"],
#af-wrapper [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding-right: 5px;
font-size: 1.2em;
vertical-align: text-top;
border-radius: inherit; /* comp */
background: none; /* comp */
color: inherit; /* comp */
}
Replace it with:
#af-wrapper [class^="icon-"],
#af-wrapper [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding-right: 5px;
font-size: 1.2em;
vertical-align: text-top;
border-radius: inherit; /* comp */
background: none; /* comp */
color: inherit; /* comp */
display: inline; /* comp */
position: initial; /* comp */
}