Hi Kirsten,
I can see the dropdown nav on the calendar just fine. It’s a little small font size wise but not bad. You can easily increase the font size by targetting it with CSS like so:
.tribe-events-month-nav {
font-size: 16px;
}
You can add that to your theme’s style.css file.
On the list, it looks like your theme is applying CSS that is setting the height of clearfix class items to 0. I would suggest finding the .clearfix declaration in your theme’s style.css file and changing it to this instead:
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
I hope that helps!
– Jonah