XF 2.0 Unique category class icon :before

Hairein

Member
Licensed customer
Hi there, i'm wondering if someone can help me with this.
https://unrealplay.com

I just need to know what is the unique id or class of each category as i want to assign a different icon in every category.
 
Solved. For those that would like to put a custom icon before each category just use this classes:
CSS:
.block--category1 .block-header a:before {
    font-family:FontAwesome;
    content:"\f001";
}

Just edit .block--category1 with id of cat that you'd like to customize
 
Back
Top Bottom