XF 2.2 Change font size of forum/subform list at top of forum page

EchoRomeo

Active member
I've looked around in the admin settings and can't figure this out. Is there a setting for adjusting the font size of the forum/subform list at the top of each page (see below)?

1682858519140.webp

Thank you!
 
Last edited:
Solution
There probable isn't a style property for it.

Add this to the extra.less template:

Less:
.p-breadcrumbs>li
{
    font-size: 15px;
}

Adjust the size as required.
There probable isn't a style property for it.

Add this to the extra.less template:

Less:
.p-breadcrumbs>li
{
    font-size: 15px;
}

Adjust the size as required.
 
Solution
Top Bottom