XF 2.2 Customizing sub forum size, font, etc

Spartan

Well-known member
I have a board with three sub forums. The size of the border and font is too big.

How do I customize this area?


Example (not show actual site for anonymity)

3CE67659-B9F4-49FA-984A-3EF7174D2F17.webp
 
The size of the border and font is too big.
Border size here is 1px, do you want to remove it ?
Font is 15px.

You can use CSS in extra.less template to reduce the font size.
Less:
.node .node--idx {
    .node-title {
        font-size: 13px;
    }
}
Where x is your node id.
 
Back
Top Bottom