Thanks for you reply it worked, and the Regenereate Thumbnails is a handy one. And I am using a child-theme now.
I used this code for setting more image size settings, for people who maybe don’t know how to do it.
$sizes = array(
'post-thumbnail' => array(
'width' => 850,
'height' => 450,
'crop' => true
),
'slider-thumbnail' => array(
'width' => 1204,
'height' => 900,
'crop' => true
),
'related-thumbnail' => array(
'width' => 210,
'height' => 180,
'crop' => false
)
);
return $sizes;
}