XF 1.3 Custom node icons using FontAwesome?

You'll need to customize this but it's a start at least in the right direction :)

Screenshot_3.webp

Code:
.node .forumNodeInfo .nodeIcon:before
{
   display: inline-block;
   font-family: FontAwesome;
   color: @primaryDarker;
    font-size: 40px;
   line-height: 38px;
}
.node_2 .forumNodeInfo .nodeIcon:before
{
   content: "\f0cc";
}
.node_3 .forumNodeInfo .nodeIcon:before
{
   content: "\f121";
}
.node_4 .forumNodeInfo .nodeIcon:before
{
   content: "\f024";
}
.Responsive .node .nodeIcon
{
   background-image: none !important;
}
 
You'll need to customize this but it's a start at least in the right direction :)

View attachment 74839

Code:
.node .forumNodeInfo .nodeIcon:before
{
   display: inline-block;
   font-family: FontAwesome;
   color: @primaryDarker;
    font-size: 40px;
   line-height: 38px;
}
.node_2 .forumNodeInfo .nodeIcon:before
{
   content: "\f0cc";
}
.node_3 .forumNodeInfo .nodeIcon:before
{
   content: "\f121";
}
.node_4 .forumNodeInfo .nodeIcon:before
{
   content: "\f024";
}
.Responsive .node .nodeIcon
{
   background-image: none !important;
}
Doesn't need this CSS?
vertical-align: middle;
 
Top Bottom