XF 2.1 Change the Font Colour.

Catsmother

Active member
hello.
I am working on a style and would like to know on how to change the font shown on the screenshot please. I have been through all the tabs I think but it won't change.

xxxxx.webp
 
Add the following in extra.less

Less:
.p-breadcrumbs>li:last-child a {
    color: red;
}

Let me show you how to find it:

1600877343497.webp


1) right-click on the part that you want to make change to
2) click Inspect
3) the related codes will be highlighted
4) you may try to change the values here, for this case, it's color.

5) copy the thing to extra.less

This is the basic. I got a lot to learn/ask too. :D
 
Add the following in extra.less

Less:
.p-breadcrumbs>li:last-child a {
    color: red;
}

Let me show you how to find it:

View attachment 235678


1) right-click on the part that you want to make change to
2) click Inspect
3) the related codes will be highlighted
4) you may try to change the values here, for this case, it's color.

5) copy the thing to extra.less

This is the basic. I got a lot to learn/ask too. :D
lol I have actually tried doing it that way but when I refresh my page it always returns to what it was before.
 
Top Bottom