The last topic was closed so I opened this one to respond the last couple of posts. Here is what I did to make this work for my situation. I wanted to used the calendar view for this site build but as you know when you drop to a mobile phone size screen the calendar table just doesn’t work.
I duplicated the “month.php” template inside the “tribe-events” folder I created in my theme. In looking at the way the templates work I could see that the list view inside “list.php”. I took this line and added it to the month.php file.
Now when the page loads it gives the calendar view and the list view right under it. Each uses a unique class identifier so it easy target the divs that hold the content. I simply used the @mediascreen methods in my sites style sheet to hide the list view when over 600 pixels while showing the calendar view. Then under 600 pixels I hide the calendar view and display the list view. All using display:block or display:none.
Works perfect and only took me about 15 minutes to find and work it out.