XF 2.0 Background link color

Changing the color of the text would much more cleaner than changing the background IMO.

To change the txt color put this code in your extra.less template

Code:
.p-breadcrumbs a {
    color: red;
}

^ change where it says red to suit your preference

if you want to change the background color put this code in extra.less template and change the color as you like

Code:
.p-breadcrumbs  {
    background: red;
}
 
Top Bottom