XF 2.3 Color the sub-Node

Devilwillcry4you

Active member
I was looking everywhere and keep find or think of the css needed to change the color of the Sub -node link on the main page. Image attached to help explain better. I managed to find where I can change the icon just not the link. Any help would be great.
 

Attachments

  • subnode.webp
    subnode.webp
    4.3 KB · Views: 11
Solution
In your extra.less template, try this:

CSS:
a.subNodeLink
{
    color: @xf-paletteAccent1;
}

Of course you'll change @xf-paletteAccent1 to whatever color code you want to use for your sub-node links.
In your extra.less template, try this:

CSS:
a.subNodeLink
{
    color: @xf-paletteAccent1;
}

Of course you'll change @xf-paletteAccent1 to whatever color code you want to use for your sub-node links.
 
Solution
Back
Top Bottom