just try this (
code from our german vb forum)
have a look to see how it works (left site)
http://koelnboard.de
PHP Code:
<!--
var max = 13;
if(threads.length < max) max = threads.length;
for(i = 0; i < max; i++)
{
if (threads[i].title.length > 50)
{ threads[i].title = threads[i].title.substring(0, 20) + '...'; }
document.writeln("<li><a href=\"http://www.yourforum.com/forum/showthread.php?t=" + threads[i].threadid + "\" style=\" color:black; \">" + threads[i].title + "</a><br> (" + threads[i].poster + " - Erstellt am: " + threads[i].threaddate + ") <br><br></li>");
}
//-->