Limit the number of characters displayed in the title

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;
    }
}
8 Likes