Hey Megan,
No problem. Our calendar is now mobile ready and is styled to look great on mobile devices. Do you not like this styling or are you not seeing it adjust to a mobile layout?
Anyway, if you would like to redirect to list view on mobile, you’ll need to follow our Themer’s Guide to copy the month view into your theme and add the following snippet to the top of the page:
if( wp_is_mobile() ) {
wp_redirect( tribe_get_upcoming_link() );
}
This will allow your site to redirect to the list view when visiting the calendar from their mobile devices.
Let me know if this helps.
Thanks!