Hey Jane,
This is unfortunately not quite possible with CSS – but it should be possible with just a little bit of custom PHP instead. Try adding code like the following to your theme’s functions.php file, and let me know if it helps! 🙂
add_filter( 'tribe_events_event_schedule_details_inner', 'tribe_support_1004326', 10, 2 );
function tribe_support_1004326( $inner, $event_id ) {
return tribe_get_start_time( $event_id );
}
Cheers,
George