XF 1.2 Adding post,likes and points inside forum thread

I think i have to make a new class like this
.userBanner.bannerBlack { color: white; background-color: #000000; border-color: #454545; }
.userBanner.bannerBlack.wrapped span { background-color: #454545; }
 
yes, i found it out :D http://prntscr.com/2ziesp so sexy
Thanks for all the information!

Ah, user groups.

See this resource by @Brogan. It's really handy.

As an example, here is my CSS for my user groups:

Code:
/* User Banners */

.userBanner.administrators {
    color: #FFFFFF;
    background: #5DB350;
    font-weight: bold;
    font-size: 12pt;
}

.userBanner.super_moderators {
    color: #FFFFFF;
    background: #4169E1;
    font-weight: bold;
    font-size: 12pt;
}

.userBanner.moderators {
    color: #FFFFFF;
    background: #9370DB;
    font-weight: bold;
    font-size: 12pt;
}

.userBanner.stylists {
    color: #FFFFFF;
    background: #FF69B4;
    font-weight: bold;
    font-size: 12pt;
}

/* User Banners */
 
Top Bottom