1. For the size of the list view image, I followed the instructions here: https://theeventscalendar.com/knowledgebase/featured-images
In the template I have indicated thumb and the image shown is not the thumbnail image:
<!-- Event Image -->
<?php echo tribe_event_featured_image( null, 'thumb' ); ?>
2. In list view it would be great if the thumbnail image could float to the left of all of the text – the title and meta both. When I use css float on the image it is not floating.
3. In the template I have added a font-awesome icon to the list view venue details, and it is still displaying even when there is no venue – what did I do wrong?
<?php if ( $venue_details ) : ?>
<!-- Venue Display Info -->
<div class="tribe-events-venue-details">
<span class="fas fa-map-marker-alt"> </span><?php
$address_delimiter = empty( $venue_address ) ? ' ' : ' ';
// These details are already escaped in various ways earlier in the process.
echo implode( $address_delimiter, $venue_details );
if ( tribe_show_google_map_link() ) {
echo tribe_get_map_link_html();
}
?>
</div> <!-- .tribe-events-venue-details -->
<?php endif; ?>