First remove the date entry
function remove_highwind_post_date(){
remove_action( 'highwind_content_header_top', 'highwind_post_date', 10 );
}
add_action('init','remove_highwind_post_date');
Afterwards add the wished placement e.g.:
add_action( 'highwind_entry_bottom', 'highwind_post_date', 10 );
Both code blocks are to be entered at your child theme functions.php.