@thetravelgal: Hello Cindy,
Can you please
Go to => Child Theme Folder => functions.php and add the following Code.
function remove_extra_image_sizes() {
remove_image_size( 'catchresponsive-slider', 1200, 514, true ); // used for Featured slider Ratio 21:9
remove_image_size( 'catchresponsive-featured-content', 350, 197, true ); // used in Featured Content and Portfolio Ratio 16:9
remove_image_size( 'catchresponsive-hero', 528, 297, true ); // used in Hero Content
//Archive Images
remove_image_size( 'catchresponsive-featured', 860, 484, true); // used in Archive Top Ratio 16:9
remove_image_size( 'catchresponsive-square', 200, 200, true ); // used in Archive Left/Right Ratio 1:1
remove_image_size( 'catchresponsive-sm-square', 100, 100, true ); // used in Testimonials and Services Ratio 1:1
remove_image_size( 'catchresponsive-stats', 40, 40, true ); // used in Stats Ratio 1:1
}
add_action('init', 'remove_extra_image_sizes');
And then regenerate the thumbnails.
Let me know if this works out!
Kind Regards,
Skandha