XF 2.2 Navigation Menu - Color on specific menus

Exonation

Member
Hello,

I'm trying to make specific menus have different colors than the others. In particular, make the donation menu have a custom color (not background, but text color)

I've searched for the specific identifier, and found this:
data-nav-id="upgrade"

Then I tried something like this:

Code:
.navTabs .navTab.nodetab.upgrade .navLink
{
    color: red !important;
}

But without any effect. Any suggestions on XF 2.2? :)

The site is here:
And I'm trying to make the "Get VIP" menu link eg. green.
 
This should do it for that tab.

CSS:
[data-nav-id="upgrade"]
{
    color: green !important;
}

the ID can be seen in the source code.

1601997049031.webp
 
Top Bottom