Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
May 07, 2020 9:51 pm
Is there any way to limit a new topic title character length? I particularly need to limit how long topics title show in widgets on our homepage.
Thanks
4 Replies
May 08, 2020 1:25 pm
Hi @realact,
Please navigate to the Dashboard > Forums > Settings > Styles admin page put the following CSS code in the "Custom CSS Code" textarea:
.posttitle{
white-space: nowrap;
width: 50px;
overflow: hidden;
text-overflow: ellipsis;
}
Please note the red marked value can be changed.
Don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.