XF 2.2 Edit register link : color and weight

  • Thread starter Thread starter Deleted member 184953
  • Start date Start date
D

Deleted member 184953

Guest
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
Yes, the link in the navbar.
Unfortunately your code doesn't work too. I tried many and any ways but i failed each time, even with !important
 
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:
 
Sorry I had a second line of code further in extra.less for p-navgroup-link--textual and this makes mess.
 
Back
Top Bottom