XF 2.0 Trimming Thread Titile in New Threads widgets and Threads List

dayummm..

for those who are looking for this solution i managed to do it with this

  1. find the template structured_list.less
  2. Under .structItem-title, make the changes like the following. 50ch is the max character i had chosen. You can choose yours

.structItem-title
{
font-size: @xf-fontSizeLarge;
font-weight: @xf-fontWeightNormal;
margin: 0;
padding: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;

max-width: 50ch;
 
Top Bottom