XF 2.2 Changing Node Icon by Node Name instead of Node ID

Triax

Member
Hello,

Is there currently a way to change node icons for nodes with names that are identical, rather than having to change each icon by it's ID number?

The current method I use is:
CSS:
 .node--id3 .node-icon i::before{
        content: '\f52b';
   }
 
Top Bottom