Number of Characters Before Wrapping Text on Thread Titles

TBolley

Active member
test.webp Dont found some Option for it, seems like after 50 digits begins to Wrapping Text. Any Option to Handle this ?
 
That 50 character wrap is coded into the templates using a template helper:

Admin CP -> Appearance -> Templates -> thread_list_item

Look for this code:

Code:
{xen:helper wrap, $thread.title, 50}

You will find this helper used in these templates as well:

conversation_list_item
thread_list_item_deleted
watch_threads_list_item
 
For reference, this is only needed in very limited numbers of places - basically thread lists only. It's down to how browsers handle wrapping vs stretching.
 
That 50 character wrap is coded into the templates using a template helper:

Admin CP -> Appearance -> Templates -> thread_list_item

Look for this code:

Code:
{xen:helper wrap, $thread.title, 50}

You will find this helper used in these templates as well:

conversation_list_item
thread_list_item_deleted
watch_threads_list_item

thanx... works now...
 
Top Bottom