Moin zusammen,
hier ein kleiner Tip wie man mit CSS FontAwesome-Icons ganz einfach in Forenkategorien einfügen kann, der Code zeigt anhand Beispiel die ersten 4 Icons:
Code
.wbbBoardNodeContainer .wbbBoardNodeContainer__headline::before {
font-family: "Font Awesome 6 Free";
font-weight: 600;
text-shadow: none;
font-size: 19px;
padding-right: 5px;
vertical-align: -1px;
}
.wbbBoardNodeContainer:first-child .wbbBoardNodeContainer__description {
font-size: var(--wcfFontSizeSmall);
margin-left: 28px;
}
.wbbBoardNodeContainer:first-child .wbbBoardNodeContainer__headline::before {
content: "\f118";
}
.wbbBoardNodeContainer:nth-child(2) .wbbBoardNodeContainer__headline::before {
content: "\f59c";
}
.wbbBoardNodeContainer:nth-child(3) .wbbBoardNodeContainer__headline::before {
content: "\f5a4";
}
.wbbBoardNodeContainer:nth-child(4) .wbbBoardNodeContainer__headline::before {
content: "\f586";
}
Display More
Selbstverständlich lässt sich das ganze beliegig erweitern mit den Selektor :nth-child(4) wo eine fortlaufende Nummer eingetragen wird, eine Liste verfügbarer FontAewesome-Icons findet ihr hier: https://fontawesome.com/search?o=r&m=free
Euer Gino