Chi-K
The homepage has menu item type of Featured articles, so you can open this file:
/templates/ja_magz_ii/html/com_content/featured/default_fetured.php
Look for this snippet of code:
<?php
$this->item->introtext = substr(strip_tags($this->item->introtext), 0, 200);
$this->item->introtext = substr($this->item->introtext, 0, strrpos($this->item->introtext, ' ')) . " ...";
echo $this->item->introtext;
?>
and change the value of '200' to the number you wish.