18
it's the stories modules block that I need to extend of the tittle from the frontpage. The block called "Top News" but it only shows like 5 charcter in the frontpage where I want the most recent topic (news) to be shown. I want to extend the tittle and I found these lines in news_top.php:
if ( strlen($title) > $options[2] ) {
$title = substr($title, 0, $options[2])."..";
}
Where $options[2] value is stored, so that I can modify it? Thanks.