i want to change the color of this tab red

spudys

Member
Registered
Joined
May 15, 2019
Messages
17
Points
13

Reputation:

i want to change the color of this tab red can you tell me how to change this admin
Screenshot_2.png
 

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,151
Points
823

Reputation:

Attachments

  • 1598528599706.png
    1598528599706.png
    9.8 KB · Views: 64

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,151
Points
823

Reputation:

add this to your EXTRA.less template :
Code:
/*color text tab*/
.p-navEl [data-nav-id="forums"] {
    color: #009688;
}
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;
}
 
Top