Dear rymy,
For example: MegaMenu -> "Health" -> "You and your family" column -> there is "Harel biken sakone" article.
-> Mega Content Type in "YT Menu Params for this Menu Item" of menu item "You and your family" is type Module . The module "You and your family" used for this menu item.
so, you can go to your_site\templates\sj_news\html\mod_articles_latest\default.php and find:
<a class="font_size<?php echo $i;?>" href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
<?php } else{ ?>
<a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a>
=>
<a class="font_size<?php echo $i;?>" href="<?php echo $item->link; ?>"><?php echo substr($item->title,0,20); ?></a>
<?php } else{ ?>
<a href="<?php echo $item->link; ?>"><?php echo substr($item->title,0,20); ?></a>
Thanks!