XF 2.0 Change text tab menu but...

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

Deleted member 184953

Guest
Hello,

how to change the color of the menu tab text without changing it in the breadcrumbs ?

188969

thanks !!
 
Hello,

Here we go, add this to your EXTRA.less template :
Code:
/*color text tab*/
.p-navEl [data-nav-id="forums"] {
    color: #009688;
}
189362

You can find the data-nav-id here : /admin.php?navigation/

If you want to add a color to the mobile view, add this :
Code:
/*color text tab mobile*/
.offCanvasMenu a[data-nav-id="forums"] {
    color: #009688;
}
189363

Regards, SyTry
 
Back
Top Bottom