Hi there, Justin!
Good question–you can change the thumbnail size in two ways:
1) Using CSS. You can add something like this to your theme’s style.css file and edit as needed:
.tribe-events-list .tribe-events-event-image img {
width: 200px;
}
2) Customize the template. You can do this by making a copy of the list/single-event.php file (located at /plugins/the-events-calendar/views/list/single-event.php), then:
- Create a new folder in your theme directory called tribe-events
- Create a new folder in that one called list
- Drop your duplicated file in that folder
Now that the file is in your theme you can modify it to fit your needs. In this case, you should see this line:
<?php echo tribe_event_featured_image( null, 'medium' ) ?>
You can change the size from medium to any other standard WordPress thumbnail size.
Does this help answer your question? Please let me know. 🙂
Cheers!
Geoff