Hello Amanda,
Thanks for reaching out!
I’m sorry to hear about this issue with the calendar title. This is definitely not standard behavior.
I have checked your site, the title of the page is there, it is just hidden by the ‘Tribe Bar’. The Tribe Bar is pushed up with this piece of css:
[code language=”css”]
#tribe-events-bar {
margin-top: -50px;
…
}
[/code]
This is in http://cam.seu.edu/wp-content/themes/enfold/config-events-calendar/event-mod.css.
You can offset this with adding the following css snippet to your theme’s style.css file:
[code language=”css”]
#tribe-events-bar {
margin-top: 0;
}
[/code]
Or moving the title up like this:
[code language=”css”]
.tribe-events-title-bar .tribe-events-page-title {
top: -50px !important;
}
[/code]
Let me know if this helps.
Cheers,
Andras