Add this to your functions.php file to load all images in your post content over HTTPS:

function load_images_https( $content ) {
$content = str_replace( 'src="http:', 'src="https:', $content );
return $content;
}