Skip to content

NodeBB recent cards customisation

Solved Customisation
3 2 713 1
  • Hi Mark,

    Iโ€™m trying to customise the nodebb-plugin-recent-cards widget that I have on my forum, I would like it to show โ€ฆ at the end of box so it doesnโ€™t look so untidy, is this something thatโ€™s possible?

    1000003024.png

    Thanks as always ๐Ÿ˜ƒ

  • Hi Mark,

    Iโ€™m trying to customise the nodebb-plugin-recent-cards widget that I have on my forum, I would like it to show โ€ฆ at the end of box so it doesnโ€™t look so untidy, is this something thatโ€™s possible?

    1000003024.png

    Thanks as always ๐Ÿ˜ƒ

    @JAC Iโ€™ve added this CSS block on your site

    .recent-cards-plugin .topic-info {
        height: 8em;
        display: -webkit-box;
        max-width: 200px;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    

    This yields the below

    0da353a7-2d5f-4014-9ab7-aa3a4095b6e4-image.png

  • phenomlabundefined phenomlab has marked this topic as solved on
  • @JAC Iโ€™ve added this CSS block on your site

    .recent-cards-plugin .topic-info {
        height: 8em;
        display: -webkit-box;
        max-width: 200px;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    

    This yields the below

    0da353a7-2d5f-4014-9ab7-aa3a4095b6e4-image.png

    @phenomlab thank you very much for the assistance Mark, massively appreciated as always.

    The great thing about this is itโ€™s all documented for other NodeBB users that come looking for solutions ๐Ÿ˜ƒ.

    Looks far better ๐Ÿค๐Ÿ‘๐Ÿป.


Did this solution help you?
Did you find the suggested solution useful? Support ๐Ÿ’— Sudonix with a coffee โ˜•
If your organisation needs deeper expertise around infrastructure, security, or technology leadership, learn more about Phenomlab Ltd. Many of the deeper technical guides behind Sudonix are published there.

Related Topics