XF 2.2 Edit register link : color and weight

Nicolas FR

Well-known member
Hello, I'm stuck on this.
I tried several ways without success, like this one...
CSS:
.p-navgroup-link.p-navgroup-link--textual.p-navgroup-link--register {
    color: rgb(242, 94, 35);
    font-weight: 500;
}

Also when we have to use these syntaxes
.class1.class2.class3 {
or
.class1 .class2 .class 3 {
or
.class1 { .class2 { .class3 {
or
.class1 { &.class2 { .class3

What's the rules here ?
 
Solution
Do you mean the text in the tab on the nav bar?

If so:

Less:
.p-navgroup-link--register
{
    color: rgb(242, 94, 35) !important;
    font-weight: 500;
}
Do you mean the text in the tab on the nav bar?

If so:

Less:
.p-navgroup-link--register
{
    color: rgb(242, 94, 35) !important;
    font-weight: 500;
}
 
Solution
Something weird, these codes works
CSS:
.p-navgroup-link.p-navgroup-link--textual.p-navgroup-link--register {
    display: none;
}
CSS:
.p-navgroup-link--register {
    display: none;
}
The link disappears...
But it refuses to be colored ! :mad:
 
Top Bottom