I will do my best with the limited wisdom I have! Here is what you need to have in your child theme –
include_once(get_template_directory() . '/framework/framework.php');
class MO_Child_Framework extends MO_Framework {
function get_image_sizes() {
if (!isset($this->image_sizes)) {
$this->image_sizes = array(
'medium-thumb' => array(550, 400), // portfolio
'large-thumb' => array(820, 400), // blog
'square-thumb' => array(450, 450), // team etc.
);
}
return $this->image_sizes;
}
}
$mo_theme = new MO_Child_Framework();
And then change the values in the child theme as you desire. You will need to run Regenerate Thumbnails plugin once you do this.