It seems to be fairly random
Hi dethfire!
You can add following code to Functions.php file in Appearance > Editor to adjust excerpt length of blog grid
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Best regards,
Yigit