Beperk het aantal tekens dat in de titel wordt weergegeven

Hello!

Please tell me how to limit the number of characters in a topic title when viewing a list of all topics.

There’s the max topic title length setting, but do you mean just to shorten the display in the topic list? (rather than actually limit the title length itself)

to

Yes, i need this

You can try this CSS. Adjust the width as you wish.

.topic-list-item {
    .link-top-line {
        max-width: 20em;
    
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

Thank you!