yes it is! :-)
Also
---------------------------------
PHP Code:
if(strlen($latest[entrytitle])>20)
{
$latest[entrytitle]= "".substr($latest[entrytitle],0,20)."...";
}
if(strlen($latest[entrytext])>150)
{
$latest[entrytext]= "".substr($latest[entrytext],0,150)."...";
}
...changing 20 (for the title) and 150 (for the text) you can choose the number of chars you want to display before the system cut it with "..."