Tagged: the events calendar
For some reason all of the sudden the text “Calendar Month Navigation” is showing on my calendar display? When I change the theme to twenty fifteen the text goes away – so something seems to be conflicting.
I have contacted the plugin developers and they responded with:
This does appear to be a theme conflict, as you correctly noted.
The theme author should also likely be notified of this, but here’s something you should be able to add to the theme (preferably child theme) style.css file or using Simple Custom CSS, to make that text go away:
#top .tribe-events-page-template #wrap_all .main_color h3 {
display: none;
}
It appears that the theme intends that to be screen reader text as an accessibility feature. That’s awesome, but is still worth letting them know because they might have a cleaner way of removing the text without it affecting the benefits of accessibility.
I have tried their code and it didn’t work.
Hi xfacta,
Please try the following in Quick CSS under Enfold–>General Styling:
#tribe-events-header h3.screen-reader-text {
display:none !important;
}
Best regards,
Rikard
Hi there
Thanks for that – it fixes the top display however it is still showing at the bottom of the Calendar
Cheers
Hi,
Try this as well:
#tribe-events-footer h3.screen-reader-text {
display:none !important;
}
Best regards,
Rikard
Wonderful thank you that worked :-)