XF 2.0 How to change the prefix TEXT size and color?

Cannabis Ape

Active member
So I got my prefix setup the way I want with font awesome.

Everything works great but one simple thing I can't figure out and that is how do I change the prefix text size and color?

Succeeded in changing my FA color but not the text.

Got a feeling I need to add something extra behind the prefix CSS and then in extra.less but can't find the right thing for it yet.

I tried:
Code:
.label--hidden::before {
    color: red;
    font-size: 11px;
}
Code:
.label--hidden {
    color: red;
    font-size: 11px;
}
And a couple others but no luck, I'm close?




Thank you.(y)

Edit:
I think I got it, is it:
Code:
.labelLink, .labelLink:hover {
    color: #30a301;
    font-size: 16px;
}
?

Hmm now that I thought about it this probably means all of them have the same color :(

Getting close though.
 
Last edited:
Top Bottom