What worked was to add the content.php file to my THEME/tribe-views/list folder and make the following edits…
Beginning @ line 19:
<!-- List Title -->
<?php do_action( 'tribe_events_before_the_title' ); ?>
<h2 class="tribe-events-page-title"><?php echo tribe_get_events_title() ?></h2>
<?php // Checks if this is an organizer page
if(tribe_is_organizer()) : ?>
<h3 style="text-align:center">with <?php echo tribe_get_organizer(); ?></h3>
<?php endif; ?>
<?php // Checks if this is a venue page
if(tribe_is_venue()) : ?>
<h3 style="text-align:center">at <?php echo tribe_get_venue(); ?></h3>
<?php endif; ?>
Thank you for your time, Julie.