XF 2.0 Node title - font-weight

Betclever

Well-known member
Hi all,

I would like to change the font-weight of the node title so "MLB" in this below example but it applies on the subtitle and lastest message aswell and that's not what I want. :)

Is it possible to change the font-weight without hard coding the nodes?

1527752396527.webp

Thanks.
 
Hi,

add this to your extra.less:

- for unread node:
Code:
.node--unread .node-title {
    font-weight: 700;
}

- for normal node:
Code:
.node-title {
    font-weight: 400;
}

Change the value to suit your needs. Maybe you'll need to add !important after the value.
 
Top Bottom